phronCare/Domain/Dtos/Stock/StockItemAvailabilityDto.cs
leandro 6d0a72c01d
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 20m38s
feat(expeditions): prevent reuse of stockitem_id in active expeditions
Closes #5
2026-03-11 23:35:51 -03:00

11 lines
339 B
C#

namespace Domain.Dtos.Stock
{
public sealed class StockItemAvailabilityDto
{
public int StockitemId { get; set; }
public decimal Quantity { get; set; }
public decimal ReservedQuantity { get; set; }
public decimal AvailableQuantity { get; set; }
public string? Serial { get; set; }
}
}