Compare commits

..

1 Commits

Author SHA1 Message Date
d146b1facf basics test 2024-09-18 14:50:54 -07:00

View File

@ -4,8 +4,11 @@
enum OrderStatus: string enum OrderStatus: string
{ {
// case ON_HOLD = 'On hold';
case APPROVED = 'Approved'; case APPROVED = 'Approved';
case PRODUCTION = 'Production'; case PRODUCTION = 'Production';
// case COMPLETED = 'Completed';
case SHIPPED = 'Shipped'; case SHIPPED = 'Shipped';
case INVOICED = 'Invoiced'; case INVOICED = 'Invoiced';
// case CANCELLED = 'Cancelled';
} }