-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJSON.cs
48 lines (46 loc) · 1.83 KB
/
JSON.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace contact_tracing
{
internal class JSON
{
public string yourName { get; set; }
public string yourPhone { get; set; }
public string yourEmail { get; set; }
public string yourAddress { get; set; }
public string yourWebsite { get; set; }
public string skill1 { get; set; }
public string skill2 { get; set; }
public string skill3 { get; set; }
public string skill4 { get; set; }
public string dateOfWork1 { get; set; }
public string position1 { get; set; }
public string companyName1 { get; set; }
public string work1CompanySkill1 { get; set; }
public string work1CompanySkill2 { get; set; }
public string dateOfWork2 { get; set; }
public string position2 { get; set; }
public string companyName2 { get; set; }
public string work2CompanySkill1 { get; set; }
public string work2CompanySkill2 { get; set; }
public string dateOfWork3 { get; set; }
public string position3 { get; set; }
public string companyName3 { get; set; }
public string work3CompanySkill1 { get; set; }
public string work3CompanySkill2 { get; set; }
public string collegeLocation { get; set; }
public string collegeName { get; set; }
public string degreeObtained { get; set; }
public string SHSLocation { get; set; }
public string SHSName { get; set; }
public string strand { get; set; }
public string JHSLocation { get; set; }
public string JHSName { get; set; }
public string certificate1 { get; set; }
public string certificate2 { get; set; }
public string certificate3 { get; set; }
}
}