4c3a68da30
Flags can be associated with Users. Includes minor updates to Job Queues and improved visibility of user information.
16 lines
538 B
C#
16 lines
538 B
C#
using Disco.Models.UI.Config.UserFlag;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Disco.Web.Areas.Config.Models.UserFlag
|
|
{
|
|
public class ShowModel : ConfigUserFlagShowModel
|
|
{
|
|
public Disco.Models.Repository.UserFlag UserFlag { get; set; }
|
|
|
|
public int CurrentAssignmentCount { get; set; }
|
|
public int TotalAssignmentCount { get; set; }
|
|
|
|
public IEnumerable<KeyValuePair<string, string>> Icons { get; set; }
|
|
public IEnumerable<KeyValuePair<string, string>> ThemeColours { get; set; }
|
|
}
|
|
} |