mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Let exceptions boil up
This commit is contained in:
@@ -6,55 +6,55 @@ namespace SabreTools.Models.SeparatedValue
|
||||
public class Row
|
||||
{
|
||||
/// <remarks>File Name</remarks>
|
||||
public string FileName { get; set; }
|
||||
public string? FileName { get; set; }
|
||||
|
||||
/// <remarks>Internal Name</remarks>
|
||||
public string InternalName { get; set; }
|
||||
public string? InternalName { get; set; }
|
||||
|
||||
/// <remarks>Description</remarks>
|
||||
public string Description { get; set; }
|
||||
public string? Description { get; set; }
|
||||
|
||||
/// <remarks>Game Name</remarks>
|
||||
public string GameName { get; set; }
|
||||
|
||||
/// <remarks>Game Description</remarks>
|
||||
public string GameDescription { get; set; }
|
||||
public string? GameDescription { get; set; }
|
||||
|
||||
/// <remarks>Type</remarks>
|
||||
public string Type { get; set; }
|
||||
|
||||
/// <remarks>Rom Name</remarks>
|
||||
public string RomName { get; set; }
|
||||
public string? RomName { get; set; }
|
||||
|
||||
/// <remarks>Disk Name</remarks>
|
||||
public string DiskName { get; set; }
|
||||
public string? DiskName { get; set; }
|
||||
|
||||
/// <remarks>Size, Numeric</remarks>
|
||||
public string Size { get; set; }
|
||||
public string? Size { get; set; }
|
||||
|
||||
/// <remarks>CRC</remarks>
|
||||
public string CRC { get; set; }
|
||||
public string? CRC { get; set; }
|
||||
|
||||
/// <remarks>MD5</remarks>
|
||||
public string MD5 { get; set; }
|
||||
public string? MD5 { get; set; }
|
||||
|
||||
/// <remarks>SHA1</remarks>
|
||||
public string SHA1 { get; set; }
|
||||
public string? SHA1 { get; set; }
|
||||
|
||||
/// <remarks>SHA256</remarks>
|
||||
public string SHA256 { get; set; }
|
||||
public string? SHA256 { get; set; }
|
||||
|
||||
/// <remarks>SHA384, Optional</remarks>
|
||||
public string SHA384 { get; set; }
|
||||
public string? SHA384 { get; set; }
|
||||
|
||||
/// <remarks>SHA512, Optional</remarks>
|
||||
public string SHA512 { get; set; }
|
||||
public string? SHA512 { get; set; }
|
||||
|
||||
/// <remarks>SpamSum, Optional</remarks>
|
||||
public string SpamSum { get; set; }
|
||||
public string? SpamSum { get; set; }
|
||||
|
||||
/// <remarks>Status, Nodump</remarks>
|
||||
public string Status { get; set; }
|
||||
public string? Status { get; set; }
|
||||
|
||||
#region DO NOT USE IN PRODUCTION
|
||||
|
||||
|
||||
Reference in New Issue
Block a user