Files
UnrealEngineUWP/Engine/Source/Programs/CrashReporter/CrashReportWebSite/Models/BuggViewModel.cs
Jaroslaw Surowiec a614f62d50 CrashReportWWW - Added a few comments
[CL 2524262 by Jaroslaw Surowiec in Main branch]
2015-04-24 10:10:04 -04:00

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; }
}
}