Skip to content

Instantly share code, notes, and snippets.

@copyleftdev
Created November 14, 2015 17:02
Show Gist options
  • Select an option

  • Save copyleftdev/bae3cb20b9e95f441418 to your computer and use it in GitHub Desktop.

Select an option

Save copyleftdev/bae3cb20b9e95f441418 to your computer and use it in GitHub Desktop.
TaskParser
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