// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; namespace Tools.CrashReporter.CrashReportWebSite.Models { /// /// The view model for the bugg show page. /// public class BuggViewModel { /// The current Bugg to display details of. public Bugg Bugg { get; set; } /// A container for all the crashes associated with this Bugg. public List Crashes { get; set; } /// The callstack common to all crashes in this Bugg. public CallStackContainer CallStack { get; set; } /// public string SourceContext { get; set; } /// Time spent in generating this site, formatted as a string. public string GenerationTime { get; set; } } }