mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-09 02:16:55 +00:00
14 lines
264 B
C#
14 lines
264 B
C#
namespace SabreTools.Serialization.Models.Hashfile
|
|
{
|
|
/// <summary>
|
|
/// File CRC
|
|
/// </summary>
|
|
public class SFV
|
|
{
|
|
[Required]
|
|
public string? File { get; set; }
|
|
|
|
[Required]
|
|
public string? Hash { get; set; }
|
|
}
|
|
} |