mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
9 lines
189 B
C#
9 lines
189 B
C#
using CleanArchitecture.gRPC.Interfaces;
|
|
|
|
namespace CleanArchitecture.gRPC;
|
|
|
|
public interface ICleanArchitecture
|
|
{
|
|
IUsersContext Users { get; }
|
|
ITenantsContext Tenants { get; }
|
|
} |