You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
772 B
C#
20 lines
772 B
C#
// Copyright 1998-2015 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; }
|
|
/// <summary>An encoded table of buggs by day for the display plugin to use.</summary>
|
|
public string BuggsByDay { get; set; }
|
|
|
|
/// <summary>Time spent in generating this site, formatted as a string.</summary>
|
|
public string GenerationTime { get; set; }
|
|
}
|
|
} |