CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
NotUndoableAttribute.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="NotUndoableAttribute.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Marks a field to indicate that the value should not </summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla
11{
22 [AttributeUsage(AttributeTargets.Field)]
23 public sealed class NotUndoableAttribute : Attribute
24 {
25
26 }
27}
Marks a field to indicate that the value should not be copied as part of the undo process.