feat(Contracts): IConfigRepository als eine Implementierung von ICRUDRepository erstellt

This commit is contained in:
Developer 02 2024-10-23 10:39:52 +02:00
parent 5dab28d99d
commit 16f694eb67

View File

@ -0,0 +1,9 @@
using DigitalData.Core.Abstractions.Infrastructure;
using WorkFlow.Domain.Entities;
namespace WorkFlow.Infrastructure.Contracts
{
public interface IConfigRepository : ICRUDRepository<Config, int>
{
}
}