// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
using Tools.CrashReporter.CrashReportWebSite.DataModels;
namespace Tools.CrashReporter.CrashReportWebSite.ViewModels
{
///
/// The view model for the Crash show page.
///
public class CrashViewModel
{
/// An instance of a Crash to interrogate.
public Crash Crash { get; set; }
/// An instance of a Crash to interrogate.
public User User { get; set; }
public UserGroup UserGroup { get; set; }
/// An instance of a Crash to interrogate.
public Bugg Bugg { 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; }
}
}