mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-23 15:24:56 +00:00
16 lines
263 B
C#
16 lines
263 B
C#
|
|
namespace SabreTools.Data.Models.Hashfile
|
|
{
|
|
/// <summary>
|
|
/// BLAKE3 File
|
|
/// </summary>
|
|
public class BLAKE3
|
|
{
|
|
[Required]
|
|
public string? Hash { get; set; }
|
|
|
|
[Required]
|
|
public string? File { get; set; }
|
|
}
|
|
}
|