aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Identity/User/FriendWebModel.cs
blob: d59bff56888516d1ea4d6c6c4b756cd510ffca10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;
using DevHive.Web.Attributes;

namespace DevHive.Web.Models.Identity.User
{
	public class FriendWebModel
	{
		[NotNull]
		[Required]
		[MinLength(3)]
		[MaxLength(50)]
		[OnlyAlphanumerics(ErrorMessage = "Username can only contain letters and digits!")]
		public string UserName { get; set; }
	}
}