// Copyright 1998-2014 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; } } }