// Copyright 1998-2014 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; }
}
}