using System; using System.Runtime.CompilerServices; namespace Gestor.Model.Attributes { [AttributeUsage(AttributeTargets.Field)] public class OldValue2Attribute : Attribute { public string OldValue2 { get; private set; } public OldValue2Attribute(string oldValue) { this.OldValue2 = oldValue; } } }