[DatStats] More work to get this better

This commit is contained in:
Matt Nadareski
2017-10-06 14:42:20 -07:00
parent 8a9e655d44
commit 234d6d25b3

View File

@@ -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