-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathEnums.cs
More file actions
38 lines (35 loc) · 708 Bytes
/
Copy pathEnums.cs
File metadata and controls
38 lines (35 loc) · 708 Bytes
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
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AnarkRE
{
public enum EscrowState
{
Created = 0,
Accepted = 1,
Closed = 2,
Arbitrating = 3
}
public enum EscrowClosedBy : int
{
Buyer = 0,
Seller = 1,
Autorelease = 2,
ArbitForBuyer = 3,
ArbitForSeller = 4,
SellerReject = 5,
BuyerCancel = 6,
BuyerRelease = 7,
SellerNoship = 8,
SellerRelease = 9,
SellerCancel = 10
}
public enum ListingAdditionType
{
Shipping = 0,
Description = 1,
SingleSelect = 2,
MultiSelect = 3
}
}