DescriptionIssue 436: Step 1 - Parse DateTime and includes also the raw date representation
The idea that the generated library will contain the following (for each date field):
[Newtonsoft.Json.JsonIgnore]
public virtual System.Nullable<System.DateTime> DateTime
{
get
{
return Utitlites.GetDateTimeFromString(DateTimeRaw);
}
set
{
DateTimeRaw = Utitlites.GetStringFromDateTime(value);
}
}
[Newtonsoft.Json.JsonPropertyAttribute("dateTime")]
public virtual string DateTimeRaw { get; set; }
Patch Set 1 #Patch Set 2 : minor #MessagesTotal messages: 2
|