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