Files
UnrealEngineUWP/Engine/Source/Programs/CrashReporter/CrashReportWebSite/Models/CrashViewModel.cs
Jaroslaw Surowiec 690bd915ba CrashReportWebsite - Optimizations and fixes (a lot faster crashes view, better callstack parsing)
[CL 2472230 by Jaroslaw Surowiec in Main branch]
2015-03-09 06:04:48 -04:00

18 lines
524 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
namespace Tools.CrashReporter.CrashReportWebSite.Models
{
/// <summary>
/// The view model for the crash show page.
/// </summary>
public class CrashViewModel
{
/// <summary>An instance of a crash to interrogate.</summary>
public Crash Crash { get; set; }
/// <summary>The callstack associated with the crash.</summary>
public CallStackContainer CallStack { get; set; }
/// <summary></summary>
public string GenerationTime { get; set; }
}
}