6 lines
191 B
C#
6 lines
191 B
C#
|
|
namespace Brizco.Identity.Api.Services.Contracts;
|
|||
|
|
|
|||
|
|
public interface IUserService : IScopedDependency
|
|||
|
|
{
|
|||
|
|
Task<List<ApplicationUser>> GetUsersAsync(CancellationToken cancellationToken);
|
|||
|
|
}
|