mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-04 05:36:12 +00:00
28 lines
595 B
C#
28 lines
595 B
C#
using SabreTools.Data.Attributes;
|
|
|
|
namespace SabreTools.Data.Models.EverdriveSMDB
|
|
{
|
|
/// <summary>
|
|
/// SHA-256 \t Machine Name/Filename \t SHA-1 \t MD5 \t CRC32 \t Size (Optional)
|
|
/// </summary>
|
|
public class Row
|
|
{
|
|
[Required]
|
|
public string? SHA256 { get; set; }
|
|
|
|
[Required]
|
|
public string? Name { get; set; }
|
|
|
|
[Required]
|
|
public string? SHA1 { get; set; }
|
|
|
|
[Required]
|
|
public string? MD5 { get; set; }
|
|
|
|
[Required]
|
|
public string? CRC32 { get; set; }
|
|
|
|
public string? Size { get; set; }
|
|
}
|
|
}
|