mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-08 06:00:50 -07:00
13 lines
No EOL
404 B
C#
13 lines
No EOL
404 B
C#
using System.Collections.Generic;
|
|
using Ombi.Helpers.Permissions;
|
|
|
|
namespace Ombi.Core.Users
|
|
{
|
|
public interface IUserHelper
|
|
{
|
|
IEnumerable<UserHelperModel> GetUsers();
|
|
IEnumerable<UserHelperModel> GetUsersWithPermission(Permissions permission);
|
|
IEnumerable<UserHelperModel> GetUsersWithFeature(Features feature);
|
|
UserHelperModel GetUser(string username);
|
|
}
|
|
} |