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