Ejemplo n.º 1
0
 public DDTObject(DDT_Obj_Type type, string name)
     : base()
 {
     //this.location = loc;
     this.type = type;
     this.name = name;
 }
Ejemplo n.º 2
0
 public DDTObject(DDT_Obj_Type type, string name,  List<DDT_Obj_Property> properties, List<DDT_Obj_Event> events)
     : base()
 {
     //this.location = loc;
     this.type = type;
     this.name = name;
     this.properties = properties;
     this.events = events;
 }