init
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Kreta.EESZTInterface.eFT.Model
|
||||
{
|
||||
public class Logging
|
||||
{
|
||||
[XmlIgnore]
|
||||
public DateTime SubmittedAt { get; set; }
|
||||
|
||||
[XmlElement(ElementName = "submittedAt", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
|
||||
public string SubmittedAtStr
|
||||
{
|
||||
get
|
||||
{
|
||||
return SubmittedAt.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ");
|
||||
}
|
||||
set
|
||||
{
|
||||
SubmittedAt = DateTime.Parse(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user