Files
FA/DelforSender/Models/ItemQuantityMapper.cs
Piotr Kus a08ec285f6
All checks were successful
ci/woodpecker/push/push_to_repo Pipeline was successful
* Introduced ItemQuantityMapper
* Added functionality to add, distract, multiply and divide quantity for specific items in specific numbers
2026-03-18 06:14:42 +01:00

5 lines
171 B
C#

using Action = DelforSenders.Enums.Action;
namespace DelforSenders.Models;
public record ItemQuantityMapper(string OrderNumber,string Item, Action Action, int Modifier);