7 lines
158 B
C#
7 lines
158 B
C#
using EonaCat.gRPC.Core.Entities;
|
|
|
|
namespace EonaCat.gRPC.Core.Interfaces.Repositories;
|
|
|
|
public interface IUserRepository : IBaseRepository<UserEntity>
|
|
{
|
|
} |