// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
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; }
/// Engine versions.
public List EngineVersions;
}
}