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


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

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

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