mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-02 03:22:57 +00:00
10 lines
167 B
C#
10 lines
167 B
C#
using System;
|
|
using CleanArchitecture.gRPC.Interfaces;
|
|
|
|
namespace CleanArchitecture.gRPC;
|
|
|
|
public interface ICleanArchitecture
|
|
{
|
|
IUsersContext Users { get; }
|
|
}
|