blob: 83fb5cf488bb4d4ed166d32770ea274ad4c99312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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;
}
}
}
|