mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
11 lines
280 B
C#
11 lines
280 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using CleanArchitecture.Shared.Tenants;
|
|
|
|
namespace CleanArchitecture.gRPC.Interfaces;
|
|
|
|
public interface ITenantsContext
|
|
{
|
|
Task<IEnumerable<TenantViewModel>> GetTenantsByIds(IEnumerable<Guid> ids);
|
|
} |