-
esantangelo authoredesantangelo authored
UserModifyDto.cs 626 B
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Tsi1.BusinessLayer.Dtos
{
public class UserModifyDto
{
[Required]
public string Username { get; set; }
[Required]
public string Password { get; set; }
[Required]
public string FirstName { get; set; }
[Required]
public string LastName { get; set; }
[Required]
public string Email { get; set; }
[Required]
public string IdentityCard { get; set; }
public int Age { get; set; }
}
}