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