mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 04:33:16 +00:00
11 lines
No EOL
252 B
C#
11 lines
No EOL
252 B
C#
using Roadie.Library.Models.Pagination;
|
|
using Roadie.Library.Models.Users;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface IUserService
|
|
{
|
|
Task<PagedResult<UserList>> List(PagedRequest request);
|
|
}
|
|
} |