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 } }