Inheritance: BaseSirenAttribute
Exemplo n.º 1
0
 public SirenCustomEnum(string name = "")
     : base(name)
 {
     Attribute = new SirenEnumAttribute();
     FieldNames = new List<string>();
     FieldValues = new List<int>();
 }
Exemplo n.º 2
0
 public SirenCustomEnum(Type type, SirenEnumAttribute attribute)
 {
     Type      = type;
     Attribute = attribute;
 }
Exemplo n.º 3
0
 public SirenCustomEnum(string name = "") : base(name)
 {
     Attribute   = new SirenEnumAttribute();
     FieldNames  = new List <string>();
     FieldValues = new List <int>();
 }
Exemplo n.º 4
0
 public SirenCustomEnum(Type type, SirenEnumAttribute attribute)
 {
     Type = type;
     Attribute = attribute;
 }