Files
Disco/Disco.Models/Services/Authorization/IRoleToken.cs
T
Gary Sharp 3f63281dc4 Feature: Job Queues
Also UI style, theme and element changes
2014-02-03 14:50:08 +11:00

12 lines
254 B
C#

using Disco.Models.Repository;
using System.Collections.Generic;
namespace Disco.Models.Services.Authorization
{
public interface IRoleToken
{
AuthorizationRole Role { get; set; }
List<string> SubjectIds { get; set; }
}
}