namespace BackOffice.BFF.Application.InventoryCQ.Commands.AdjustStock; public record AdjustStockCommand : IRequest { public long ProductId { get; init; } public int ProductType { get; init; } // 1=RegularProduct, 2=DiscountProduct public int NewQuantity { get; init; } public string? Reason { get; init; } public string? ReferenceNumber { get; init; } } public class AdjustStockResponseDto { public int PreviousQuantity { get; set; } public int NewQuantity { get; set; } public int Difference { get; set; } }