10 lines
272 B
C#
10 lines
272 B
C#
using DigitalData.Core.Abstractions.Application;
|
|
using WorkFlow.Application.DTO.Config;
|
|
using WorkFlow.Domain.Entities;
|
|
|
|
namespace WorkFlow.Application.Contracts
|
|
{
|
|
public interface IConfigService : ICRUDService<ConfigCreateDto, ConfigDto, Config, int>
|
|
{
|
|
}
|
|
} |