mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Create Required attribute and tag properties
This commit is contained in:
@@ -5,15 +5,20 @@ namespace SabreTools.Models.EverdriveSMDB
|
||||
/// </summary>
|
||||
public class Row
|
||||
{
|
||||
public string SHA256 { get; set; }
|
||||
[Required]
|
||||
public string? SHA256 { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
[Required]
|
||||
public string? Name { get; set; }
|
||||
|
||||
public string SHA1 { get; set; }
|
||||
[Required]
|
||||
public string? SHA1 { get; set; }
|
||||
|
||||
public string MD5 { get; set; }
|
||||
[Required]
|
||||
public string? MD5 { get; set; }
|
||||
|
||||
public string CRC32 { get; set; }
|
||||
[Required]
|
||||
public string? CRC32 { get; set; }
|
||||
|
||||
public string? Size { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user