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