namespace SabreTools.Data.Models.DosCenter { /// file public class File { /// name, attribute [Required] public string? Name { get; set; } /// size, attribute, numeric [Required] public long? Size { get; set; } /// crc, attribute [Required] public string? CRC { get; set; } /// sha1, attribute public string? SHA1 { get; set; } /// date, attribute public string? Date { get; set; } } }