// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
namespace Tools.CrashReporter.CrashReportWebSite.Models
{
///
/// The view model for the crash summary page.
///
public class DashboardViewModel
{
/// An encoded table of crashes by week for the display plugin to use.
public string CrashesByWeek { get; set; }
/// An encoded table of crashes by day for the display plugin to use.
public string CrashesByDay { get; set; }
/// An encoded table of buggs by day for the display plugin to use.
public string BuggsByDay { get; set; }
/// Time spent in generating this site, formatted as a string.
public string GenerationTime { get; set; }
}
}