16 lines
430 B
C#

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