mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
14 lines
257 B
C#
14 lines
257 B
C#
namespace SabreTools.Models.Hashfile
|
|
{
|
|
/// <summary>
|
|
/// SHA-384 File
|
|
/// </summary>
|
|
public class SHA384
|
|
{
|
|
[Required]
|
|
public string? Hash { get; set; }
|
|
|
|
[Required]
|
|
public string? File { get; set; }
|
|
}
|
|
} |