aboutsummaryrefslogtreecommitdiff
path: root/Data/Models/DTOs/Identity/RegisterDTO.cs
blob: 936b390d8d03b397ac1a442fd03d2c2a5974811a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Data.Models.DTOs.Identity
{
	public class RegisterDTO
	{
		public string UserName { get; set; }
		public string Email { get; set; }
		public string FirstName { get; set; }
		public string LastName { get; set; }
		public string Password { get; set; }
	}
}