Add final models (nw)

This commit is contained in:
Matt Nadareski
2023-07-12 12:02:58 -04:00
parent 3765715749
commit e3f65a946a
21 changed files with 598 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace SabreTools.Models.Hashfile
{
/// <summary>
/// File CRC
/// </summary>
public class SFV
{
public string File { get; set; }
public string Hash { get; set; }
}
}