mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 07:37:10 +00:00
14 lines
257 B
C#
14 lines
257 B
C#
namespace SabreTools.Models.Hashfile
|
|
{
|
|
/// <summary>
|
|
/// SHA-256 File
|
|
/// </summary>
|
|
public class SHA256
|
|
{
|
|
[Required]
|
|
public string? Hash { get; set; }
|
|
|
|
[Required]
|
|
public string? File { get; set; }
|
|
}
|
|
} |