mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 06:20:33 -04:00
14 lines
321 B
C#
14 lines
321 B
C#
namespace API.DTOs.Scrobbling;
|
|
|
|
/// <summary>
|
|
/// Information about a User's MAL connection
|
|
/// </summary>
|
|
public class MalUserInfoDto
|
|
{
|
|
public required string Username { get; set; }
|
|
/// <summary>
|
|
/// This is actually the Client Id
|
|
/// </summary>
|
|
public required string AccessToken { get; set; }
|
|
}
|