summaryrefslogtreecommitdiff
path: root/Forms/UserAccountForm.cs
blob: f513a3a32f435bdb6d3c4283eb95afeaf4784b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.ComponentModel.DataAnnotations;

namespace BackendPIA.Forms {
    public class UserAccountForm {
        [Required]
        public string? Email { get; set; }

        [Required]
        public string? UserName { get; set; }

        [Required]
        public string? Password { get; set; }
    }
}