[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
{
get { return _count; }
set { _count = value; }
}
// Individual DatItem type counts
public long ArchiveCount
{
get { return _archiveCount; }
set { _archiveCount = value; }
}
public long BiosSetCount
{
get { return _biosSetCount; }
set { _biosSetCount = value; }
}
public long DiskCount
{
get { return _diskCount; }
set { _diskCount = value; }
}
public long ReleaseCount
{
get { return _releaseCount; }
set { _releaseCount = value; }
}
public long RomCount
{
get { return _romCount; }
set { _romCount = value; }
}
public long SampleCount
{
get { return _sampleCount; }
set { _sampleCount = value; }
}
// Total reported size
public long TotalSize
{
get { return _totalSize; }
set { _totalSize = value; }
}
// Individual hash counts
public long CRCCount
{
get { return _crcCount; }
set { _crcCount = value; }
}
public long MD5Count
{
get { return _md5Count; }
set { _md5Count = value; }
}
public long SHA1Count
{
get { return _sha1Count; }
set { _sha1Count = value; }
}
public long SHA256Count
{
get { return _sha256Count; }
set { _sha256Count = value; }
}
public long SHA384Count
{
get { return _sha384Count; }
set { _sha384Count = value; }
}
public long SHA512Count
{
get { return _sha512Count; }
set { _sha512Count = value; }
}
// Individual status counts
public long BaddumpCount
{
get { return _baddumpCount; }
set { _baddumpCount = value; }
}
public long GoodCount
{
get { return _goodCount; }
set { _goodCount = value; }
}
public long NodumpCount
{
get { return _nodumpCount; }
set { _nodumpCount = value; }
}
public long VerifiedCount
{
get { return _verifiedCount; }
set { _verifiedCount = value; }
}
#endregion