Newer
Older
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
using System.Xml.Serialization;
namespace Api.DataTransferObjects.V1
{
/// <summary>
/// Data Transfer Object representing a Beckman Institute staff member.
/// </summary>
[XmlType(TypeName = "Person")]
public class FeedPersonDTO
{
/// <summary>
/// Person's unique ID number.
/// </summary>
public long PersonId { get; set; }
/// <summary>
/// Person's full name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Person's Beckman title.
/// </summary>
public string Title { get; set; }
/// <summary>
/// Person's campus address.
/// </summary>
public string BuildingAddress { get; set; }
/// <summary>
/// Person's campus email address.
/// </summary>
public string EmailAddress { get; set; }
/// <summary>
/// Person's room number in the Beckman Institute.
/// </summary>
public string RoomNumber { get; set; }
/// <summary>
/// Person's campus phone number.
/// </summary>
public string PhoneNumber { get; set; }
}
}