DocSpace-client/products/ASC.Files/Server/Model/UploadModel.cs
2020-02-26 13:01:12 +03:00

20 lines
582 B
C#

using System.Collections.Generic;
using System.IO;
using System.Net.Mime;
using Microsoft.AspNetCore.Http;
namespace ASC.Files.Model
{
public class UploadModel
{
public Stream File { get; set; }
public ContentType ContentType { get; set; }
public ContentDisposition ContentDisposition { get; set; }
public IEnumerable<IFormFile> Files { get; set; }
public bool? CreateNewIfExist { get; set; }
public bool? StoreOriginalFileFlag { get; set; }
public bool KeepConvertStatus { get; set; }
}
}