mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
12 lines
210 B
C#
12 lines
210 B
C#
|
|
namespace SabreTools.Models.Hashfile
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// File CRC
|
||
|
|
/// </summary>
|
||
|
|
public class SFV
|
||
|
|
{
|
||
|
|
public string File { get; set; }
|
||
|
|
|
||
|
|
public string Hash { get; set; }
|
||
|
|
}
|
||
|
|
}
|