You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
538 B
C#
28 lines
538 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Infrastructure;
|
|
using OpenAuth.App.Response;
|
|
using OpenAuth.Repository.Domain;
|
|
|
|
namespace OpenAuth.App
|
|
{
|
|
public interface IAuthStrategy
|
|
{
|
|
List<ModuleView> Modules { get; }
|
|
|
|
List<SysModuleElement> ModuleElements { get; }
|
|
|
|
List<SysRole> Roles { get; }
|
|
|
|
List<SysResource> Resources { get; }
|
|
|
|
List<SysOrg> Orgs { get; }
|
|
|
|
List<SysPosition> Positions { get; }
|
|
|
|
SysUser User
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
} |