Newer
Older
Warehouse / src / Application / Products / ProductStockMass / StockMassDto.cs
@Derek Comartin Derek Comartin on 22 Aug 2023 181 bytes Init
namespace MyWarehouse.Application.Products.ProductStockMass;

public record StockMassDto
{
    public float Value { get; init; }
    public string Unit { get; init; } = null!;
}