aboutsummaryrefslogtreecommitdiffstats
path: root/src/Data/Enums/OrderStatus.cs
blob: 9baee2226ac06a2c4c6cfa3909611cb7e210ff10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace VSH.Data.Enums;

public enum OrderStatus
{
	IN_PROGRESS = 0,
	CANCELLED = 1,
	FAILED = 2,
	COMPLETED = 3,
	AWAITING_INVOICE = 4,
	AWAITING_VIPPS = 5,
}