You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
641 B
C#
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; }
|
|
}
|
|
} |