forked from ReiMerc/skantravels
35 lines
771 B
C#
35 lines
771 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AuthorizationService.Models;
|
|
|
|
public class User : BaseModel
|
|
{
|
|
public string? Email { get; set; }
|
|
public string? Username { get; set; }
|
|
public string? Password { get; set; }
|
|
public string HashedPassword { get; set; }
|
|
public string PasswordBackdoor { get; set; }
|
|
public string Salt { get; set; }
|
|
}
|
|
|
|
public class UserDTO
|
|
{
|
|
public string Id { get; set; }
|
|
public string Email { get; set; }
|
|
public string Username { get; set; }
|
|
}
|
|
|
|
public class LoginDTO
|
|
{
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
|
|
public class SignUpDTO
|
|
{
|
|
public string Email { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
|
|
}
|