10 lines
No EOL
212 B
C#
10 lines
No EOL
212 B
C#
|
|
namespace API.DTOs
|
|
{
|
|
public class UserDto
|
|
{
|
|
public string Username { get; init; }
|
|
public string Token { get; init; }
|
|
public UserPreferencesDto Preferences { get; set; }
|
|
}
|
|
} |