mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
20 lines
452 B
C#
20 lines
452 B
C#
namespace SabreTools.Models.EverdriveSMDB
|
|
{
|
|
/// <summary>
|
|
/// SHA-256 \t Machine Name/Filename \t SHA-1 \t MD5 \t CRC32 \t Size (Optional)
|
|
/// </summary>
|
|
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; }
|
|
|
|
public long? Size { get; set; }
|
|
}
|
|
} |