mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-09-29 15:30:50 -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; }
|
|
}
|
|
} |