Web API for the bulk printing desktop application.
| 12345678910111213 |
- using Newtonsoft.Json.Converters;
- namespace MAX.Json
- {
- public class DateFormatConverter : IsoDateTimeConverter
- {
- public DateFormatConverter(string format)
- {
- DateTimeFormat = format;
- }
- }
- }
|