Files

16 lines
257 B
C#
Raw Permalink Normal View History

2025-09-26 12:44:16 -04:00
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.Hashfile
2025-09-26 10:20:48 -04:00
{
/// <summary>
/// File CRC
/// </summary>
public class SFV
{
[Required]
2025-09-26 10:20:48 -04:00
public string? File { get; set; }
[Required]
2025-09-26 10:20:48 -04:00
public string? Hash { get; set; }
}
2026-01-27 12:03:01 -05:00
}