The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
677 B
31 lines
677 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Web; |
|
using Teknik.ViewModels; |
|
|
|
namespace Teknik.Areas.Profile.ViewModels |
|
{ |
|
public class ProfileViewModel : ViewModelBase |
|
{ |
|
public int UserID { get; set; } |
|
|
|
public string Username { get; set; } |
|
|
|
public string Email { get; set; } |
|
|
|
public DateTime JoinDate { get; set; } |
|
|
|
public DateTime LastSeen { get; set; } |
|
|
|
public string About { get; set; } |
|
|
|
public string Website { get; set; } |
|
|
|
public string Quote { get; set; } |
|
|
|
public string BlogTitle { get; set; } |
|
|
|
public string BlogDescription { get; set; } |
|
} |
|
} |