forked from zachtaylor1/SWProj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResApplicationForm.cs
More file actions
52 lines (49 loc) · 1.96 KB
/
ResApplicationForm.cs
File metadata and controls
52 lines (49 loc) · 1.96 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SWProjv1
{
class ResApplicationForm
{
public String applicationID { get; set; }
public String studentID { get; set; }
public String firstName { get; set; }
public String lastName { get; set; }
public String otherName { get; set; }
public String gender { get; set; }
public String preferBuilding { get; set; }
public String email { get; set; }
public String streetAddress { get; set; }
public String city { get; set; }
public String region { get; set; }
public String country { get; set; }
public String postalCode { get; set; }
public String phoneCountryCode { get; set; }
public String phoneAreaCode { get; set; }
public String phoneNumber { get; set; }
public String socialLevel { get; set; }
public String bedtime { get; set; }
public String wakeUp { get; set; }
public String volumeLevel { get; set; }
public String cleanliness { get; set; }
public String roommateName { get; set; }
public String roommateID { get; set; }
public String mealPlan { get; set; }
public bool smokes { get; set; }
public bool liveWithSmoke { get; set; }
public bool drinks { get; set; }
public bool liveWithDrink { get; set; }
public bool marijuana { get; set; }
public bool liveWithMarijuana { get; set; }
public bool overnightVisitors { get; set; }
public bool studiesInRoom { get; set; }
public bool roommateRequest { get; set; }
public String[] sports { get; set; }
public String[] hobbies { get; set; }
public String[] music { get; set; }
public int schoolYear { get; set; }
public bool confirmed { get; set; }
}
}