using System; using System.Collections.Generic; using Infrastructure; using OpenAuth.App.Response; using OpenAuth.Repository.Domain; namespace OpenAuth.App { public interface IAuthStrategy { List Modules { get; } List ModuleElements { get; } List Roles { get; } List Resources { get; } List Orgs { get; } List Positions { get; } SysUser User { get; set; } } }