User
feat: clean out authentication and authorization, rolemenu database fixed(use role id instead of rolecode now), adjust pages
01be06d
Raw
History Blame Contribute Delete
493 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TaskTrackingSystem.Shared.Models.Auth
{
public class AuthResponseDto
{
public string Token { get; set; } = string.Empty;
public string Username { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public long RoleId { get; set; }
public string RoleName { get; set; } = string.Empty;
}
}