Files
UnrealEngineUWP/Engine/Source/Programs/CrashReporter/CrashReportWebSite/Models/DashboardViewModel.cs
2014-03-14 14:13:41 -04:00

15 lines
512 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
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; }
}
}