All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 20m38s
Closes #5
11 lines
339 B
C#
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; }
|
|
}
|
|
} |