/* * 后台API * * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: Admin * * Generated by: https://github.com/swagger-api/swagger-codegen.git */ using Newtonsoft.Json.Converters; namespace IO.Swagger.Client { /// /// Formatter for 'date' swagger formats ss defined by full-date - RFC3339 /// see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types /// public class SwaggerDateConverter : IsoDateTimeConverter { /// /// Initializes a new instance of the class. /// public SwaggerDateConverter() { // full-date = date-fullyear "-" date-month "-" date-mday DateTimeFormat = "yyyy-MM-dd"; } } }