-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathMemberProfile.cs
More file actions
25 lines (24 loc) · 916 Bytes
/
MemberProfile.cs
File metadata and controls
25 lines (24 loc) · 916 Bytes
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
namespace SGFDevs.ViewModels;
public class MemberProfile
{
public string Email { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string JobTitle { get; set; }
public string ProfileImagePath { get; set; }
public string AboutText { get; set; }
public string Skills { get; set; }
public string Groups { get; set; }
public string City { get; set; }
public string State { get; set; }
public bool AvailableForHire { get; set; }
public bool AvailableForContractWork { get; set; }
public string TwitterUrl { get; set; }
public string TwitchUrl { get; set; }
public string FacebookUrl { get; set; }
public string InstagramUrl { get; set; }
public string LinkedInUrl { get; set; }
public string MeetupUrl { get; set; }
public string WebsiteUrl { get; set; }
public string YouTubeUrl { get; set; }
}