-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRec.cs
More file actions
31 lines (29 loc) · 697 Bytes
/
Rec.cs
File metadata and controls
31 lines (29 loc) · 697 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
namespace SimdJsonBench;
public sealed class Rec
{
public Rec(
string jobno,
string invoiced,
string invoiceno,
string email,
string oemail,
string vin,
string branch
)
{
Jobno = jobno;
Invoiced = invoiced;
Invoiceno = invoiceno;
Email = email;
Oemail = oemail;
Vin = vin;
Branch = branch;
}
public string Jobno { get; set; }
public string Invoiced { get; set; }
public string Invoiceno { get; set; }
public string Email { get; set; }
public string Oemail { get; set; }
public string Vin { get; set; }
public string Branch { get; set; }
}