Files
SabreTools.Models/Hashfile/SFV.cs
2023-09-04 01:31:30 -04:00

22 lines
378 B
C#

namespace SabreTools.Models.Hashfile
{
/// <summary>
/// File CRC
/// </summary>
public class SFV
{
[Required]
#if NET48
public string File { get; set; }
#else
public string? File { get; set; }
#endif
[Required]
#if NET48
public string Hash { get; set; }
#else
public string? Hash { get; set; }
#endif
}
}