// Copyright 1998-2014 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 IEnumerable Crashes { get; set; } /// The callstack common to all crashes in this Bugg. public CallStackContainer CallStack { get; set; } } }