aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/ExamTemplate.Web.Models/User/LoginUserWebModel.cs
blob: 0f4ef734bee9f9b9d0fe0fd131bd4b44563ffe0b (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 LoginUserWebModel
	{
		[Required]
		[MinLength(1)]
		public string Username { get; set; }

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