-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudent.cs
More file actions
30 lines (24 loc) · 1.07 KB
/
Student.cs
File metadata and controls
30 lines (24 loc) · 1.07 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
namespace DocuSign_AUA
{
struct Student
{
public string StudentId { get; set; }
public string StudentFirstName { get; set; }
public string StudentLastName { get; set; }
public string StudentName { get; set; }
public string StudentPicturePath { get; set; }
public string StudentEmailSchool { get; set; }
public string CourseId { get; set; }
public string ClinicalRotation { get; set; }
public string ClinicalSite { get; set; }
public string StartDate { get; set; }
public string EndDate { get; set; }
public string EnvelopeId { get; set; }
public string CreditWeeks { get; set; }
public string StudentPreceptorName { get; set; }
public string StudentPreceptorEmail { get; set; }
public string StudentDMEName { get; set; }
public string StudentDMEEmail { get; set; }
public string StudentDMEComments { get; set; }
}
}