aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Models/User/LoginUserViewModel.cs
blob: dd917cf3f3d07957791c1a24a106739ace26199f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System.ComponentModel.DataAnnotations;

namespace ExamTemplate.Web.Models.User
{
	public class LoginUserViewModel
	{
		[Required]
		[MinLength(1)]
		public string Username { get; set; }

		[Required]
		[MinLength(1)]
		public string Password { get; set; }
	}
}