Kavita/API/DTOs/Scrobbling/MalUserInfoDto.cs
2025-05-04 07:14:44 -07:00

14 lines
329 B
C#

namespace API.DTOs.Scrobbling;
/// <summary>
/// Information about a User's MAL connection
/// </summary>
public sealed record MalUserInfoDto
{
public required string Username { get; set; }
/// <summary>
/// This is actually the Client Id
/// </summary>
public required string AccessToken { get; set; }
}