using SabreTools.DatFiles;
namespace SabreTools.Reports
{
///
/// Statistics wrapper for outputting
///
public class DatStatistics
{
///
/// ItemDictionary representing the statistics
///
public ItemDictionary Statistics { get; set; }
///
/// Name to display on output
///
public string DisplayName { get; set; }
///
/// Total machine count to use on output
///
public long MachineCount { get; set; }
///
/// Determines if statistics are for a directory or not
///
public bool IsDirectory { get; set; } = false;
}
}