summaryrefslogtreecommitdiff
path: root/DTOs/UserDTO.cs
blob: 963c3fe6bcb96d54895c3ec472c43ee587b9f802 (plain)
1
2
3
4
5
6
7
8
9
namespace IdentityAPI.DTOs {
    public class UserDTO {
	    #nullable enable
        public string? UserName { get; set; }
	    public string? Email { get; set; }
        public string? Password { get; set; }
	    #nullable disable
    }
}