fix
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
namespace MyOffice.Services.Currency.Domain;
|
||||
/// <see cref="MyOffice.Data.Models.Currencies.CurrencyGlobal"/>
|
||||
namespace MyOffice.Services.Currency.Domain;
|
||||
|
||||
using AutoMapper;
|
||||
using MyOffice.Data.Models.Currencies;
|
||||
|
||||
public class CurrencyGlobalDto
|
||||
{
|
||||
@@ -7,3 +11,11 @@ public class CurrencyGlobalDto
|
||||
public string Symbol { get; set; } = null!;
|
||||
public int DefaultQuantity { get; set; }
|
||||
}
|
||||
|
||||
public class CurrencyGlobalDtoProfile: Profile
|
||||
{
|
||||
public CurrencyGlobalDtoProfile()
|
||||
{
|
||||
CreateMap<CurrencyGlobal, CurrencyGlobalDto>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user