public ItemTransactionResult(int stackTransfered) { Type = ItemTransactionResultType.Success; StacksTransfered = stackTransfered; }
public ItemTransactionResult(ItemTransactionResultType failureType) { Type = failureType; StacksTransfered = 0; }