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