Files

27 lines
559 B
C#
Raw Permalink Normal View History

2025-09-26 12:44:16 -04:00
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.EverdriveSMDB
2025-09-26 10:20:48 -04:00
{
/// <summary>
/// SHA-256 \t Machine Name/Filename \t SHA-1 \t MD5 \t CRC32 \t Size (Optional)
/// </summary>
public class Row
{
[Required]
2025-09-26 10:20:48 -04:00
public string? SHA256 { get; set; }
[Required]
2025-09-26 10:20:48 -04:00
public string? Name { get; set; }
[Required]
2025-09-26 10:20:48 -04:00
public string? SHA1 { get; set; }
[Required]
2025-09-26 10:20:48 -04:00
public string? MD5 { get; set; }
[Required]
2025-09-26 10:20:48 -04:00
public string? CRC32 { get; set; }
2026-04-02 23:45:17 -04:00
public long? Size { get; set; }
2025-09-26 10:20:48 -04:00
}
2026-01-27 12:03:01 -05:00
}