blob: ea02204d17a2668467a3b95c20b58be9753662be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.BL.Enumerations
{
public enum RMLExtensionLevel
{
[Description("1")]
One = 1,
[Description("2")]
Two = 2,
[Description("3")]
Three = 3,
}
}
|