< Summary

Information
Class: c:\Source 2025\CurrencyConverter\CurrencyConverter\src\Application\Currencies\SearchCurrency\Dtos\SearchCurrencyDto.cs
Assembly: Default
File(s): c:\Source 2025\CurrencyConverter\CurrencyConverter\src\Application\Currencies\SearchCurrency\Dtos\SearchCurrencyDto.cs
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 6
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

File(s)

c:\Source 2025\CurrencyConverter\CurrencyConverter\src\Application\Currencies\SearchCurrency\Dtos\SearchCurrencyDto.cs

#LineLine coverage
 1namespace Application.Currencies.SearchCurrency.Dtos
 2{
 563    public record SearchCurrencyAmountDto(string Code, decimal Amount);
 194    public record SearchCurrencyDateCapturedDto(DateTime DateCaptured, List<SearchCurrencyAmountDto> ExchangeRates);
 125    public record SearchCurrencyDto(string Code, List<SearchCurrencyDateCapturedDto> History);
 6}