public GoalStatusMsg(GoalIDMsg goal_id, byte status, string text)
 {
     this.goal_id = goal_id;
     this.status  = status;
     this.text    = text;
 }
 private GoalStatusMsg(MessageDeserializer deserializer)
 {
     this.goal_id = GoalIDMsg.Deserialize(deserializer);
     deserializer.Read(out this.status);
     deserializer.Read(out this.text);
 }
 public GoalStatusMsg()
 {
     this.goal_id = new GoalIDMsg();
     this.status  = 0;
     this.text    = "";
 }