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