DocSpace-client/products/ASC.Files/Server/Model/UploadModel.cs

20 lines
582 B
C#
Raw Normal View History

2020-02-26 10:01:12 +00:00
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; }
}
}