mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-01 04:34:49 -04: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; }
|
|
}
|
|
} |