// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
using System.Collections.Generic;
using System.Web.Mvc;
namespace Tools.CrashReporter.CrashReportWebSite.ViewModels
{
///
/// The view model for the user administrative page.
///
public class UsersViewModel
{
/// The currently selected user group.
public string UserGroup { get; set; }
public PagingInfo PagingInfo { get; set; }
/// The currently selected user group.
public string User { get; set; }
/// The number of users in each group.
public Dictionary GroupCounts { get; set; }
/// Select list of usergroup Ids
public List GroupSelectList { get; set; }
///
/// List of users to display in page
///
public List Users { get; set; }
}
public class UserViewModel
{
public string Name { get; set; }
public string UserGroup { get; set; }
}
}