mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatStats] More work to get this better
This commit is contained in:
@@ -47,82 +47,100 @@ namespace SabreTools.Library.Dats
|
|||||||
public long Count
|
public long Count
|
||||||
{
|
{
|
||||||
get { return _count; }
|
get { return _count; }
|
||||||
|
set { _count = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Individual DatItem type counts
|
// Individual DatItem type counts
|
||||||
public long ArchiveCount
|
public long ArchiveCount
|
||||||
{
|
{
|
||||||
get { return _archiveCount; }
|
get { return _archiveCount; }
|
||||||
|
set { _archiveCount = value; }
|
||||||
}
|
}
|
||||||
public long BiosSetCount
|
public long BiosSetCount
|
||||||
{
|
{
|
||||||
get { return _biosSetCount; }
|
get { return _biosSetCount; }
|
||||||
|
set { _biosSetCount = value; }
|
||||||
}
|
}
|
||||||
public long DiskCount
|
public long DiskCount
|
||||||
{
|
{
|
||||||
get { return _diskCount; }
|
get { return _diskCount; }
|
||||||
|
set { _diskCount = value; }
|
||||||
}
|
}
|
||||||
public long ReleaseCount
|
public long ReleaseCount
|
||||||
{
|
{
|
||||||
get { return _releaseCount; }
|
get { return _releaseCount; }
|
||||||
|
set { _releaseCount = value; }
|
||||||
}
|
}
|
||||||
public long RomCount
|
public long RomCount
|
||||||
{
|
{
|
||||||
get { return _romCount; }
|
get { return _romCount; }
|
||||||
|
set { _romCount = value; }
|
||||||
}
|
}
|
||||||
public long SampleCount
|
public long SampleCount
|
||||||
{
|
{
|
||||||
get { return _sampleCount; }
|
get { return _sampleCount; }
|
||||||
|
set { _sampleCount = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Total reported size
|
// Total reported size
|
||||||
public long TotalSize
|
public long TotalSize
|
||||||
{
|
{
|
||||||
get { return _totalSize; }
|
get { return _totalSize; }
|
||||||
|
set { _totalSize = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Individual hash counts
|
// Individual hash counts
|
||||||
public long CRCCount
|
public long CRCCount
|
||||||
{
|
{
|
||||||
get { return _crcCount; }
|
get { return _crcCount; }
|
||||||
|
set { _crcCount = value; }
|
||||||
}
|
}
|
||||||
public long MD5Count
|
public long MD5Count
|
||||||
{
|
{
|
||||||
get { return _md5Count; }
|
get { return _md5Count; }
|
||||||
|
set { _md5Count = value; }
|
||||||
}
|
}
|
||||||
public long SHA1Count
|
public long SHA1Count
|
||||||
{
|
{
|
||||||
get { return _sha1Count; }
|
get { return _sha1Count; }
|
||||||
|
set { _sha1Count = value; }
|
||||||
}
|
}
|
||||||
public long SHA256Count
|
public long SHA256Count
|
||||||
{
|
{
|
||||||
get { return _sha256Count; }
|
get { return _sha256Count; }
|
||||||
|
set { _sha256Count = value; }
|
||||||
}
|
}
|
||||||
public long SHA384Count
|
public long SHA384Count
|
||||||
{
|
{
|
||||||
get { return _sha384Count; }
|
get { return _sha384Count; }
|
||||||
|
set { _sha384Count = value; }
|
||||||
}
|
}
|
||||||
public long SHA512Count
|
public long SHA512Count
|
||||||
{
|
{
|
||||||
get { return _sha512Count; }
|
get { return _sha512Count; }
|
||||||
|
set { _sha512Count = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Individual status counts
|
// Individual status counts
|
||||||
public long BaddumpCount
|
public long BaddumpCount
|
||||||
{
|
{
|
||||||
get { return _baddumpCount; }
|
get { return _baddumpCount; }
|
||||||
|
set { _baddumpCount = value; }
|
||||||
}
|
}
|
||||||
public long GoodCount
|
public long GoodCount
|
||||||
{
|
{
|
||||||
get { return _goodCount; }
|
get { return _goodCount; }
|
||||||
|
set { _goodCount = value; }
|
||||||
}
|
}
|
||||||
public long NodumpCount
|
public long NodumpCount
|
||||||
{
|
{
|
||||||
get { return _nodumpCount; }
|
get { return _nodumpCount; }
|
||||||
|
set { _nodumpCount = value; }
|
||||||
}
|
}
|
||||||
public long VerifiedCount
|
public long VerifiedCount
|
||||||
{
|
{
|
||||||
get { return _verifiedCount; }
|
get { return _verifiedCount; }
|
||||||
|
set { _verifiedCount = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
Reference in New Issue
Block a user