forked from bhrugen/Bulky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSD.cs
30 lines (26 loc) · 1.07 KB
/
SD.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BulkyBook.Utility
{
public static class SD
{
public const string Role_User_Indi = "Individual";
public const string Role_User_Comp = "Company";
public const string Role_Admin = "Admin";
public const string Role_Employee = "Employee";
public const string StatusPending = "Pending";
public const string StatusApproved = "Approved";
public const string StatusInProcess = "Processing";
public const string StatusShipped = "Shipped";
public const string StatusCancelled = "Cancelled";
public const string StatusRefunded = "Refunded";
public const string PaymentStatusPending = "Pending";
public const string PaymentStatusApproved = "Approved";
public const string PaymentStatusDelayedPayment = "ApprovedForDelayedPayment";
public const string PaymentStatusRejected = "Rejected";
public const string SessionCart = "SessionShoppingCart";
}
}