forked from BlogEngine/BlogEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProfile.cs
More file actions
69 lines (69 loc) · 1.82 KB
/
Profile.cs
File metadata and controls
69 lines (69 loc) · 1.82 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
namespace BlogEngine.Core.Data.Models
{
/// <summary>
/// Author profile for json serialization
/// </summary>
public class Profile
{
/// <summary>
/// display name
/// </summary>
public string DisplayName { get; set; }
/// <summary>
/// first name
/// </summary>
public string FirstName { get; set; }
/// <summary>
/// middle name
/// </summary>
public string MiddleName { get; set; }
/// <summary>
/// last name
/// </summary>
public string LastName { get; set; }
/// <summary>
/// email address
/// </summary>
public string EmailAddress { get; set; }
/// <summary>
/// birthday date
/// </summary>
public string Birthday { get; set; }
/// <summary>
/// photo url
/// </summary>
public string PhotoUrl { get; set; }
/// <summary>
/// private/public
/// </summary>
public bool Private { get; set; }
/// <summary>
/// mobile phone
/// </summary>
public string PhoneMobile { get; set; }
/// <summary>
/// main phone
/// </summary>
public string PhoneMain { get; set; }
/// <summary>
/// fax
/// </summary>
public string PhoneFax { get; set; }
/// <summary>
/// city
/// </summary>
public string CityTown { get; set; }
/// <summary>
/// state
/// </summary>
public string RegionState { get; set; }
/// <summary>
/// country
/// </summary>
public string Country { get; set; }
/// <summary>
/// biography
/// </summary>
public string AboutMe { get; set; }
}
}