Exemplo n.º 1
0
 public GoalStatus(GoalID goal_id, byte status, string text)
 {
     this.goal_id = goal_id;
     this.status  = status;
     this.text    = text;
 }
Exemplo n.º 2
0
 public GoalStatus()
 {
     this.goal_id = new GoalID();
     this.status  = 0;
     this.text    = "";
 }