using BuaaLocationServer.Models; using System.ComponentModel.DataAnnotations; namespace BuaaLocationServer.Dto { public class UserDto { public string UserName { get; set; } = null!; public string Password { get; set; } = null!; public RoleType RoleType { get; set; } } }