2014-12-07 19:09:38 -05:00
|
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
|
|
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; }
|
2015-03-09 06:04:48 -04:00
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
|
/// <summary>The currently selected user group.</summary>
|
2015-03-09 06:04:48 -04:00
|
|
|
|
public HashSet<string> Users { get; set; }
|
|
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
|
/// <summary>The number of users in each group.</summary>
|
|
|
|
|
|
public Dictionary<string, int> GroupCounts { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|