using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DB.Dto { public class UserDto { public long Id{ get; set; } public string UserName { get; set; } public string RoleName { get; set; } public long RoleId { get; set; } public short RoleLevel { get; set; } } }