Kavita/API/DTOs/Scrobbling/MalUserInfoDto.cs
2024-03-23 14:20:16 -07:00

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; }
}