20 lines
380 B
C#
20 lines
380 B
C#
using DAL.Values;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTO.Login
|
|
{
|
|
public class UserRegisterDTO
|
|
{
|
|
[MaxLength(64)]
|
|
public string firstName { get; set; } = null!;
|
|
|
|
[MaxLength(64)]
|
|
public string lastName { get; set; } = null!;
|
|
|
|
public PhoneNumber phoneNumber { get; set; } = null!;
|
|
|
|
[MaxLength(1000)]
|
|
public string? password { get; set; }
|
|
}
|
|
}
|