refactor(ReceiverReadDto): rename as ReceiverDto

This commit is contained in:
2025-09-08 17:19:38 +02:00
parent 876c5def56
commit ed7068fe71
16 changed files with 25 additions and 25 deletions

View File

@@ -15,6 +15,6 @@ public class MappingProfile : Profile
/// </summary>
public MappingProfile()
{
CreateMap<Receiver, ReceiverReadDto>();
CreateMap<Receiver, ReceiverDto>();
}
}