19 lines
489 B
C#
19 lines
489 B
C#
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; }
|
|
}
|
|
}
|