mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
12 lines
No EOL
354 B
C#
12 lines
No EOL
354 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);
|
|
}
|
|
} |