3f63281dc4
Also UI style, theme and element changes
12 lines
254 B
C#
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; }
|
|
}
|
|
}
|