コード例 #1
0
 public CAEntity(CAEntityType type, Dictionary <string, dynamic> properties)
 {
     this.Type = type;
     if (properties != null)
     {
         this.Properties = new Dictionary <string, dynamic>(properties);
     }
 }
コード例 #2
0
 public CAEntity(CAEntityType type)
 {
     this.Type = type;
 }