22 lines
546 B
C#

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; }
/// <summary>
/// Name of the file as stored on disk
/// </summary>
public string? StoredName { get; set; }
}
}