Files
UnrealEngineUWP/Engine/Source/Programs/CrashReporter/CrashReportWebSite/Models/BuggViewModel.cs
2014-03-14 14:13:41 -04:00

20 lines
641 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
namespace Tools.CrashReporter.CrashReportWebSite.Models
{
/// <summary>
/// The view model for the bugg show page.
/// </summary>
public class BuggViewModel
{
/// <summary>The current Bugg to display details of.</summary>
public Bugg Bugg { get; set; }
/// <summary>A container for all the crashes associated with this Bugg.</summary>
public IEnumerable<Crash> Crashes { get; set; }
/// <summary>The callstack common to all crashes in this Bugg.</summary>
public CallStackContainer CallStack { get; set; }
}
}