mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[ALL] Switch naming of Hash, add new variants
This commit is contained in:
@@ -12,6 +12,8 @@ namespace SabreTools.Helper.Dats
|
||||
protected string _md5;
|
||||
protected string _sha1;
|
||||
protected string _sha256;
|
||||
protected string _sha384;
|
||||
protected string _sha512;
|
||||
protected ItemStatus _itemStatus;
|
||||
|
||||
#endregion
|
||||
@@ -34,6 +36,16 @@ namespace SabreTools.Helper.Dats
|
||||
get { return _sha256; }
|
||||
set { _sha256 = value; }
|
||||
}
|
||||
public string SHA384
|
||||
{
|
||||
get { return _sha384; }
|
||||
set { _sha384 = value; }
|
||||
}
|
||||
public string SHA512
|
||||
{
|
||||
get { return _sha512; }
|
||||
set { _sha512 = value; }
|
||||
}
|
||||
public ItemStatus ItemStatus
|
||||
{
|
||||
get { return _itemStatus; }
|
||||
|
||||
Reference in New Issue
Block a user