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