Files
Disco/Disco.Models/Services/Authorization/IRoleToken.cs
T
Gary Sharp e984221c95 Bug Fix: User Attachment Refs, AD Group Domain
User Attachments updated in the DataStore to reflect new UserId (which
includes the domain); AD Groups were using DnsName instead of
NetBiosName.
2014-04-11 19:56:17 +10:00

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; }
}
}