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