aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Enumerations/Plies.cs
blob: d099bee5d277899cd2226867174f6c67bb5d517d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;

namespace Tango.BL.Enumerations
{
    public enum Plies
    {
        [Description("1")]
        P1 = 1,
        [Description("2")]
        P2 = 2,
        [Description("3")]
        P3 = 3,
        [Description("4")]
        P4 = 4,
        [Description("5")]
        P5 = 5,
        [Description("6")]
        P6 = 6
    }
}