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