2023-07-12 10:57:46 -04:00
|
|
|
namespace SabreTools.Models.DosCenter
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>file</remarks>
|
|
|
|
|
public class File
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>name, attribute</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
|
|
|
|
public string? Name { get; set; }
|
2023-07-12 10:57:46 -04:00
|
|
|
|
2023-07-13 15:32:00 -04:00
|
|
|
/// <remarks>size, attribute, numeric</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
|
|
|
|
public string? Size { get; set; }
|
2023-07-12 10:57:46 -04:00
|
|
|
|
|
|
|
|
/// <remarks>crc, attribute</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
|
|
|
|
public string? CRC { get; set; }
|
2023-07-12 10:57:46 -04:00
|
|
|
|
|
|
|
|
/// <remarks>date, attribute</remarks>
|
2023-08-04 09:54:36 -04:00
|
|
|
public string? Date { get; set; }
|
2023-07-13 15:32:00 -04:00
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
public string[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
2023-07-12 10:57:46 -04:00
|
|
|
}
|
|
|
|
|
}
|