blob: 22cc848b0236378cba09cd842a1dcb2caf993f22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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;
}
}
|