mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
28 lines
699 B
C#
28 lines
699 B
C#
|
|
namespace SabreTools.Models.DosCenter
|
||
|
|
{
|
||
|
|
/// <remarks>file</remarks>
|
||
|
|
public class File
|
||
|
|
{
|
||
|
|
/// <remarks>name, attribute</remarks>
|
||
|
|
[Required]
|
||
|
|
public string? Name { get; set; }
|
||
|
|
|
||
|
|
/// <remarks>size, attribute, numeric</remarks>
|
||
|
|
[Required]
|
||
|
|
public string? Size { get; set; }
|
||
|
|
|
||
|
|
/// <remarks>crc, attribute</remarks>
|
||
|
|
[Required]
|
||
|
|
public string? CRC { get; set; }
|
||
|
|
|
||
|
|
/// <remarks>date, attribute</remarks>
|
||
|
|
public string? Date { get; set; }
|
||
|
|
|
||
|
|
#region DO NOT USE IN PRODUCTION
|
||
|
|
|
||
|
|
/// <remarks>Should be empty</remarks>
|
||
|
|
public string[]? ADDITIONAL_ELEMENTS { get; set; }
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|