summaryrefslogtreecommitdiff
path: root/DTOs/CreateUserAccount.cs
blob: 9e5359f21d5e05f4dc2904bbaf0bea08e35432f4 (plain)
1
2
3
4
5
6
7
8
9
10
using System.ComponentModel.DataAnnotations;

namespace LibraryAPI.DTOs {
    public class CreateUserAccount {
        [Required]
        public string? Email { get; set; }
        [Required]
        public string? Password { get; set; }
    }
}