9 lines
167 B
C#
9 lines
167 B
C#
|
using NG_2023_Kanban.DataLayer.Entities;
|
||
|
|
||
|
namespace NG_2023_Kanban.DataLayer.Interfaces
|
||
|
{
|
||
|
public interface ICommentRepository : IRepository<Comment>
|
||
|
{
|
||
|
}
|
||
|
}
|