blob: 91ab3bbd1edf63beee02d07acfeefa004cc0c2ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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 YarnUnits
{
[Description("DTEX")]
DTEX = 0,
[Description("Tex")]
Tex = 1,
[Description("Ne")]
Ne = 2,
[Description("Nm")]
Nm = 3,
}
}
|