namespace FruitBank.Common.Enums;
public enum PreorderItemStatus
{
Pending = 0,
Fulfilled = 10,
PartiallyFulfilled = 20,
Dropped = 30
}