Newer
Older
namespace BeckmanComms.Api.DataTransferObjects.V2.Directory
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
{
/// <summary>
/// Data Transfer Object containing combined directory database fields.
/// </summary>
public class PersonDto
{
/// <summary>
/// Staff member's U of I NetID.
/// </summary>
public string NetId { get; set; }
/// <summary>
/// Staff member's name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Staff member's preferred first name.
/// </summary>
public string FirstName { get; set; }
/// <summary>
/// Staff member's family name.
/// </summary>
public string LastName { get; set; }
/// <summary>
/// Staff member's email address.
/// </summary>
public string EmailAddress { get; set; }
/// <summary>
/// Staff member's title.
/// </summary>
public string Title { get; set; }
/// <summary>
/// Staff member's campus address.
/// </summary>
public string BuildingAddress { get; set; }
/// <summary>
/// Staff member's office number.
/// </summary>
public string RoomNumber { get; set; }
/// <summary>
/// Staff member's campus phone number.
/// </summary>
public string PhoneNumber { get; set; }
/// <summary>
/// Collection containing staff member's directory photos.
/// </summary>
public IDictionary<string, PhotoDto> Photos { get; set; }
/// <summary>
/// Collection containing staff member's group affiliations.
/// </summary>
public IEnumerable<AffiliationDto> Affiliations { get; set; }
}
}