aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Models/User/UserViewModel.cs
blob: 4cd815faaba87ccf01615fd6458804b74af6b225 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace ExamTemplate.Web.Models.User
{
	public class UserViewModel
	{
		public string FirstName { get; set; }
		public string LastName { get; set; }
		public string Username { get; set; }
	}
}