using Newtonsoft.Json; namespace Kreta.Client.KGR.Request { public class BaseApaczaiUploadFileRequest { [JsonProperty("FileNameWithExtension")] public string PostedFileName { get; set; } [JsonIgnore] public string PostedFileContentType { get; set; } [JsonProperty("FileTypeId")] public int PostedFileCategory { get; set; } [JsonProperty("ESZATipus")] public string ApaczaiDokumentumTipus { get; set; } } }