Files
UnrealEngineUWP/Engine/Source/Programs/CrashReporter/CrashReportWebSite/Models/UsersViewModel.cs
Jaroslaw Surowiec 690bd915ba CrashReportWebsite - Optimizations and fixes (a lot faster crashes view, better callstack parsing)
[CL 2472230 by Jaroslaw Surowiec in Main branch]
2015-03-09 06:04:48 -04:00

24 lines
660 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
namespace Tools.CrashReporter.CrashReportWebSite.Models
{
/// <summary>
/// The view model for the user administrative page.
/// </summary>
public class UsersViewModel
{
/// <summary>The currently selected user group.</summary>
public string UserGroup { get; set; }
/// <summary>The currently selected user group.</summary>
public HashSet<string> Users { get; set; }
/// <summary>The number of users in each group.</summary>
public Dictionary<string, int> GroupCounts { get; set; }
}
}