You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
28 lines
837 B
C#
28 lines
837 B
C#
// Copyright 1998-2015 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 List<Crash> Crashes { get; set; }
|
|
|
|
/// <summary>The callstack common to all crashes in this Bugg.</summary>
|
|
public CallStackContainer CallStack { get; set; }
|
|
|
|
/// <summary></summary>
|
|
public string SourceContext { get; set; }
|
|
|
|
/// <summary>Time spent in generating this site, formatted as a string.</summary>
|
|
public string GenerationTime { get; set; }
|
|
}
|
|
} |