mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
10 lines
212 B
C#
10 lines
212 B
C#
|
|
namespace API.DTOs
|
|
{
|
|
public class UserDto
|
|
{
|
|
public string Username { get; init; }
|
|
public string Token { get; init; }
|
|
public UserPreferencesDto Preferences { get; set; }
|
|
}
|
|
} |