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