using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class QualificationFileDto:JdObject{ [JsonProperty("file_name")] public string fileName { get; set; } [JsonProperty("file_key")] public string fileKey { get; set; } [JsonProperty("file_path")] public string filePath { get; set; } [JsonProperty("file_size")] public long fileSize { get; set; } [JsonProperty("file_type")] public string fileType { get; set; } } }