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