mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-29 17:55:02 -05:00
9 lines
191 B
C#
9 lines
191 B
C#
namespace API.DTOs
|
|
{
|
|
public class UserDto
|
|
{
|
|
public string Username { get; set; }
|
|
public string Token { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
}
|
|
} |