7 lines
181 B
C#
7 lines
181 B
C#
namespace MyOffice.Services.Currency.Domain;
|
|
|
|
public class CurrencyWithRateDto
|
|
{
|
|
public CurrencyDto Currency { get; set; } = null!;
|
|
public CurrencyRateDto? Rate { get; set; }
|
|
} |