ticket_manager/DTOs/AppUser/NewAppUserDTO.cs
2020-02-27 16:19:15 +01:00

18 lines
No EOL
473 B
C#

using System.ComponentModel.DataAnnotations;
namespace TicketManager.DTO
{
public class NewAppUserDTO
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Presentation { get; set; }
[DataType(DataType.EmailAddress)]
public string Email { get; set; }
[DataType(DataType.PhoneNumber)]
public string Phone { get; set; }
public string Picture { get; set; }
}
}