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

public enum OrderAdminStatus
{
	VIPPS_CAPTURED = 0,
	INVOICE_SENT = 1,
	PAYED = 2,
	IN_PROGESS = 3,
}