init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
24
Kreta.EESZTInterface/eFT/Model/Logging.cs
Normal file
24
Kreta.EESZTInterface/eFT/Model/Logging.cs
Normal file
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue