You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
18 lines
582 B
C#
18 lines
582 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>Time spent in generating this site, formatted as a string.</summary>
|
|
public string GenerationTime { get; set; }
|
|
}
|
|
} |