Created
November 14, 2015 17:02
-
-
Save copyleftdev/bae3cb20b9e95f441418 to your computer and use it in GitHub Desktop.
TaskParser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Xml.Serialization; | |
| namespace TaskManagerParser | |
| { | |
| public class TaskStatus | |
| { | |
| [XmlArrayItem("Id")] | |
| public List<string> TaskIds { get; set; } | |
| [XmlArrayItem("Name")] | |
| public List<string> TaskNames { get; set; } | |
| [XmlArrayItem("Started")] | |
| public List<DateTime> TaskStartTime { get; set; } | |
| [XmlArrayItem("Completed")] | |
| public List<DateTime> TaskCompleteTime { get; set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment