Example #1
0
 public HandDefinition GetDef()
 {
     HandDefinition ret = new HandDefinition();
     ret.HandDef = this.Definition;
     ret.Value = this.Value;
     ret.Description = this.Description;
     return ret;
 }
Example #2
0
 public HandDefinitionModel(HandDefinition def)
 {
     this.Definition = def.HandDef;
     this.Value = def.Value;
     this.Description = def.Description;
 }