mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-04 05:36:12 +00:00
17 lines
298 B
C#
17 lines
298 B
C#
using SabreTools.Data.Attributes;
|
|
|
|
namespace SabreTools.Data.Models.Hashfile
|
|
{
|
|
/// <summary>
|
|
/// SHA-384 File
|
|
/// </summary>
|
|
public class SHA384
|
|
{
|
|
[Required]
|
|
public string? Hash { get; set; }
|
|
|
|
[Required]
|
|
public string? File { get; set; }
|
|
}
|
|
}
|