Update mapping in ReadHistoryMappingProfile constructor

Changed mapping from EnvelopeHistory to ReadHistoryResponse.
This commit is contained in:
Developer 02 2025-05-12 10:58:21 +02:00
parent af280ee64e
commit 6a6da4a876

View File

@ -13,6 +13,6 @@ public class ReadHistoryMappingProfile: Profile
/// </summary> /// </summary>
public ReadHistoryMappingProfile() public ReadHistoryMappingProfile()
{ {
CreateMap<EnvelopeHistory, ReadHistoryMappingProfile>(); CreateMap<EnvelopeHistory, ReadHistoryResponse>();
} }
} }