Commit for development environment setup

This commit is contained in:
2023-06-19 16:12:33 -04:00
parent be72063a3c
commit bbce2ad0a6
2209 changed files with 1171775 additions and 625 deletions

View File

@@ -0,0 +1,20 @@
using System;
namespace Csla
{
/// <summary>
/// Marks a field to indicate that the value should not
/// be copied as part of the undo process.
/// </summary>
/// <remarks>
/// Marking a variable with this attribute will cause the n-level
/// undo process to ignore that variable's value. The value will
/// not be included in a snapshot when BeginEdit is called, nor
/// will it be restored when CancelEdit is called.
/// </remarks>
[AttributeUsage(AttributeTargets.Field)]
public sealed class NotUndoableAttribute : Attribute
{
}
}