Fix timeline date

This commit is contained in:
Lucio Maranta
2019-03-12 09:56:58 +01:00
parent c391a161c5
commit 09b6e4e009
4 changed files with 142 additions and 24 deletions
+2 -2
View File
@@ -145,10 +145,10 @@ namespace Step.Controllers.WebApi
public class DTOTimelineDateElement
{
[XmlElement("from")]
public string From { get; set; }
public DateTime From { get; set; }
[XmlElement("to")]
public string To { get; set; }
public DateTime To { get; set; }
}
public class DTOTimelinePartPrg