Files
Matt Nadareski 7689c6dd07 Libraries
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
2026-03-21 16:26:56 -04:00

29 lines
667 B
C#

namespace SabreTools.Data.Models.Hashfile
{
/// <remarks>Hashfiles can only contain one type of hash at a time</remarks>
public class Hashfile
{
public SFV[]? SFV { get; set; }
public MD2[]? MD2 { get; set; }
public MD4[]? MD4 { get; set; }
public MD5[]? MD5 { get; set; }
public RIPEMD128[]? RIPEMD128 { get; set; }
public RIPEMD160[]? RIPEMD160 { get; set; }
public SHA1[]? SHA1 { get; set; }
public SHA256[]? SHA256 { get; set; }
public SHA384[]? SHA384 { get; set; }
public SHA512[]? SHA512 { get; set; }
public SpamSum[]? SpamSum { get; set; }
}
}