2023-07-12 10:57:46 -04:00
|
|
|
namespace SabreTools.Models.DosCenter
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>file</remarks>
|
|
|
|
|
public class File
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>name, attribute</remarks>
|
2023-07-30 15:13:16 -04:00
|
|
|
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-07-30 15:13:16 -04:00
|
|
|
public string Size { get; set; }
|
2023-07-12 10:57:46 -04:00
|
|
|
|
|
|
|
|
/// <remarks>crc, attribute</remarks>
|
2023-07-30 15:13:16 -04:00
|
|
|
public string CRC { get; set; }
|
2023-07-12 10:57:46 -04:00
|
|
|
|
|
|
|
|
/// <remarks>date, attribute</remarks>
|
2023-07-30 15:13:16 -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
|
|
|
}
|
|
|
|
|
}
|