9 lines
217 B
C#
9 lines
217 B
C#
using DigitalData.Core.Abstractions.Infrastructure;
|
|
using WorkFlow.Domain.Entities;
|
|
|
|
namespace WorkFlow.Infrastructure.Contracts
|
|
{
|
|
public interface IConfigRepository : ICRUDRepository<Config, int>
|
|
{
|
|
}
|
|
} |