mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
31 lines
787 B
C#
31 lines
787 B
C#
using SabreTools.DatFiles;
|
|
|
|
namespace SabreTools.Reports
|
|
{
|
|
/// <summary>
|
|
/// Statistics wrapper for outputting
|
|
/// </summary>
|
|
public class DatStatistics
|
|
{
|
|
/// <summary>
|
|
/// ItemDictionary representing the statistics
|
|
/// </summary>
|
|
public ItemDictionary? Statistics { get; set; }
|
|
|
|
/// <summary>
|
|
/// Name to display on output
|
|
/// </summary>
|
|
public string? DisplayName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Total machine count to use on output
|
|
/// </summary>
|
|
public long MachineCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Determines if statistics are for a directory or not
|
|
/// </summary>
|
|
public bool IsDirectory { get; set; } = false;
|
|
}
|
|
}
|