8 lines
161 B
C#
8 lines
161 B
C#
using NG_2023_Kanban.DataLayer.Entities;
|
|
|
|
namespace NG_2023_Kanban.DataLayer.Interfaces
|
|
{
|
|
public interface ICardRepository : IRepository<Card>
|
|
{
|
|
}
|
|
}
|