mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-28 19:52:24 +00:00
22 lines
378 B
C#
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
|
|
}
|
|
} |