Newer
Older
Warehouse / src / Application / Products / ProductStockValue / StockValueDto.cs
@Derek Comartin Derek Comartin on 22 Aug 2023 194 bytes Init
namespace MyWarehouse.Application.Products.ProductStockValue;

public record StockValueDto
{
    public decimal Amount { get; init; }
    public string CurrencyCode { get; init; } = null!;
}