You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Tools.CrashReporter.CrashReportWebSite.ViewModels
|
|
{
|
|
/// <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; }
|
|
|
|
public PagingInfo PagingInfo { get; set; }
|
|
|
|
/// <summary>The currently selected user group.</summary>
|
|
public string User { get; set; }
|
|
|
|
/// <summary>The number of users in each group.</summary>
|
|
public Dictionary<string, int> GroupCounts { get; set; }
|
|
|
|
/// <summary>Select list of usergroup Ids</summary>
|
|
public List<SelectListItem> GroupSelectList { get; set; }
|
|
|
|
/// <summary>
|
|
/// List of users to display in page
|
|
/// </summary>
|
|
public List<UserViewModel> Users { get; set; }
|
|
}
|
|
|
|
public class UserViewModel
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string UserGroup { get; set; }
|
|
}
|
|
} |