-
Notifications
You must be signed in to change notification settings - Fork 0
/
5CraftSalesOrder.cs
133 lines (72 loc) · 2.99 KB
/
5CraftSalesOrder.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Decompiled with JetBrains decompiler
// Type: CraftCMS.User
// Assembly: WebOrderImportCraft, Version=1000.510.8894.24695, Culture=neutral, PublicKeyToken=bf11c4f15ab4e1ef
// MVID: F965BC17-D6AC-43D0-B104-3E53F0C380F8
// Assembly location: P:\Synergy\VMAWS Custom Apps\WebOrderImportCraft\WebOrderImportCraft.exe
using System;
namespace CraftCMS
{
public class User
{
public string username { get; set; }
public int? photoId { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
public string email { get; set; }
public string password { get; set; }
public string admin { get; set; }
public string locked { get; set; }
public string suspended { get; set; }
public string pending { get; set; }
public DateTime? lastLoginDate { get; set; }
public int? invalidLoginCount { get; set; }
public DateTime? lastInvalidLoginDate { get; set; }
public DateTime? lockoutDate { get; set; }
public string hasDashboard { get; set; }
public bool passwordResetRequired { get; set; }
public DateTime? lastPasswordChangeDate { get; set; }
public string unverifiedEmail { get; set; }
public string newPassword { get; set; }
public string currentPassword { get; set; }
public DateTime? verificationCodeIssuedDate { get; set; }
public string verificationCode { get; set; }
public string lastLoginAttemptIp { get; set; }
public string authError { get; set; }
public int? inheritorOnDelete { get; set; }
public int id { get; set; }
public int? tempId { get; set; }
public int? draftId { get; set; }
public int? revisionId { get; set; }
public string uid { get; set; }
public int siteSettingsId { get; set; }
public int? fieldLayoutId { get; set; }
public int contentId { get; set; }
public bool enabled { get; set; }
public bool archived { get; set; }
public int siteId { get; set; }
public string title { get; set; }
public string slug { get; set; }
public string uri { get; set; }
public DateTime dateCreated { get; set; }
public DateTime dateUpdated { get; set; }
public DateTime? dateDeleted { get; set; }
public bool trashed { get; set; }
public string _ref { get; set; }
public string status { get; set; }
public int? structureId { get; set; }
public string url { get; set; }
public Avataxcustomerusagetype avataxCustomerUsageType { get; set; }
public object pricingTier { get; set; }
public bool termsCustomer { get; set; }
public string company { get; set; }
public string phone { get; set; }
public string visualId { get; set; }
public DateTime? cooldownEndTime { get; set; }
public string friendlyName { get; set; }
public string fullName { get; set; }
public bool isCurrent { get; set; }
public string name { get; set; }
public string preferredLanguage { get; set; }
public DateTime? remainingCooldownTime { get; set; }
}
}