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