Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the TsEnum class
 /// </summary>
 public TsEnum(TsBasicType typeName)
 {
     this.Values = new List <TsEnumValue>();
     this.Name   = typeName;
 }
Ejemplo n.º 2
0
 public TsClass(TsBasicType typeName)
 {
     this.Name       = typeName;
     this.Interfaces = new List <TsType>();
     this.Properties = new List <TsProperty>();
 }