using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AwInitilizer.Model { public class UploadFile { public UploadFile() { //ContentType = "application/octet-stream"; } public string Name { get; set; } public string Filename { get; set; } //public string ContentType { get; set; } public Stream Stream { get; set; } } }