namespace Marco.Pms.Model.Utilities { public class FileDetails { public Guid 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; } } }