9 lines
161 B
C#
9 lines
161 B
C#
|
using NG_2023_Kanban.DataLayer.Entities;
|
||
|
|
||
|
namespace NG_2023_Kanban.DataLayer.Interfaces
|
||
|
{
|
||
|
public interface IUserRepository : IRepository<User>
|
||
|
{
|
||
|
}
|
||
|
}
|