mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-24 17:52:18 +00:00
22 lines
386 B
C#
22 lines
386 B
C#
namespace SabreTools.Models.Hashfile
|
|
{
|
|
/// <summary>
|
|
/// SpamSum File
|
|
/// </summary>
|
|
public class SpamSum
|
|
{
|
|
[Required]
|
|
#if NET48
|
|
public string Hash { get; set; }
|
|
#else
|
|
public string? Hash { get; set; }
|
|
#endif
|
|
|
|
[Required]
|
|
#if NET48
|
|
public string File { get; set; }
|
|
#else
|
|
public string? File { get; set; }
|
|
#endif
|
|
}
|
|
} |