mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-06 14:03:56 +00:00
10 lines
190 B
C#
10 lines
190 B
C#
using CleanArchitecture.gRPC.Interfaces;
|
|
|
|
namespace CleanArchitecture.gRPC;
|
|
|
|
public interface ICleanArchitecture
|
|
{
|
|
IUsersContext Users { get; }
|
|
ITenantsContext Tenants { get; }
|
|
}
|