2023-07-11 23:39:54 -04:00
|
|
|
namespace SabreTools.Models.EverdriveSMDB
|
|
|
|
|
{
|
2023-07-12 10:57:46 -04:00
|
|
|
/// <summary>
|
|
|
|
|
/// SHA-256 \t Machine Name/Filename \t SHA-1 \t MD5 \t CRC32 \t Size (Optional)
|
|
|
|
|
/// </summary>
|
2023-07-11 23:39:54 -04:00
|
|
|
public class Row
|
|
|
|
|
{
|
|
|
|
|
public string SHA256 { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public string SHA1 { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MD5 { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CRC32 { get; set; }
|
|
|
|
|
|
2023-07-13 16:44:14 -04:00
|
|
|
public string? Size { get; set; }
|
|
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
public string[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
2023-07-11 23:39:54 -04:00
|
|
|
}
|
|
|
|
|
}
|