using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Marco.Pms.Model.Utilities { public class FileDetails { public int Id { get; set; } public byte[]? FileData { get; set; } // Byte array for the file public string? FileName { get; set; } public string? ContentType { get; set; } /// /// Name of the file as stored on disk /// public string? StoredName { get; set; } } }