2014-12-07 19:09:38 -05:00
|
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
|
|
namespace Tools.CrashReporter.CrashReportWebSite.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The view model for the crash summary page.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class DashboardViewModel
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>An encoded table of crashes by week for the display plugin to use.</summary>
|
|
|
|
|
|
public string CrashesByWeek { get; set; }
|
|
|
|
|
|
/// <summary>An encoded table of crashes by day for the display plugin to use.</summary>
|
|
|
|
|
|
public string CrashesByDay { get; set; }
|
2015-02-11 05:19:04 -05:00
|
|
|
|
/// <summary>An encoded table of buggs by day for the display plugin to use.</summary>
|
|
|
|
|
|
public string BuggsByDay { get; set; }
|
2015-03-09 06:04:48 -04:00
|
|
|
|
|
2015-04-24 10:10:04 -04:00
|
|
|
|
/// <summary>Time spent in generating this site, formatted as a string.</summary>
|
2015-03-09 06:04:48 -04:00
|
|
|
|
public string GenerationTime { get; set; }
|
2014-03-14 14:13:41 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|