blob: 1af9300be31765d8b1cd9a84991248b14a35740c (
plain)
1
2
3
4
5
6
7
8
9
|
using System.Collections.Generic;
using Marina.Domain.Interfaces;
using Marina.Infrastructure;
using Marina.Presentation.DTO;
namespace Marina.Task.Mappers {
public interface IBrokenRulesToDisplayItemMapper :
IMapper< IEnumerable< IBrokenRule >, IEnumerable< DisplayResponseLineDTO > > {}
}
|