mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 02:31:08 +00:00
11 lines
275 B
C#
11 lines
275 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using CleanArchitecture.Shared.Users;
|
|
|
|
namespace CleanArchitecture.gRPC.Interfaces;
|
|
|
|
public interface IUsersContext
|
|
{
|
|
Task<IEnumerable<UserViewModel>> GetUsersByIds(IEnumerable<Guid> ids);
|
|
} |