e984221c95
User Attachments updated in the DataStore to reflect new UserId (which includes the domain); AD Groups were using DnsName instead of NetBiosName.
11 lines
243 B
C#
11 lines
243 B
C#
using Disco.Models.Repository;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Disco.Models.Services.Authorization
|
|
{
|
|
public interface IRoleToken
|
|
{
|
|
AuthorizationRole Role { get; }
|
|
List<string> SubjectIds { get; }
|
|
}
|
|
} |