16 lines
420 B
C#
16 lines
420 B
C#
using Apimanager_backend.Models;
|
|
|
|
namespace Apimanager_backend.Dtos
|
|
{
|
|
public class UserInfoDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Email { get; set; }
|
|
public List<UserRole> Roles { get; set; }
|
|
public bool IsBan { get; set; }
|
|
public decimal Balance { get; set; }
|
|
public DateTime Created { get; set; }
|
|
}
|
|
}
|