Files
MilkyShots/Lactose/Dtos/User/UserRegisterDto.cs
2024-11-18 21:31:45 +01:00

9 lines
262 B
C#

namespace Lactose.Dtos.User;
public class UserRegisterDto {
public string Username { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}