Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public Ticket(IJSonObject json)
- {
- _id = json["id"].Int32Value;
- _name = json["name"].StringValue;
- _description = json["description"].StringValue;
- _projectID = json["projectID"].Int32Value;
- _author = json["author"].StringValue;
- _assignedTo = json["assignedTo"].StringValue;
- _priority = new Priority(json["priority"]);
- _state = new State(json["state"]);
- _changes = json["changes"].Int32Value;
- _lastUpdated = json["lastUpdated"].DateTimeValue;
- _milestone = new Milestone(json["milestone"]);
- _startDate = json["startDate"].DateTimeValue;
- _endDate = json["endDate"].DateTimeValue;
- _closed = json["closed"].BooleanValue;
- }
Advertisement
Add Comment
Please, Sign In to add comment