Kavita/API/DTOs/Scrobbling/ScrobbleResponseDto.cs
2025-06-15 23:20:21 +02:00

13 lines
339 B
C#

namespace API.DTOs.Scrobbling;
#nullable enable
/// <summary>
/// Response from Kavita+ Scrobble API
/// </summary>
public sealed record ScrobbleResponseDto
{
public bool Successful { get; set; }
public string? ErrorMessage { get; set; }
public string? ExtraInformation {get; set;}
public int RateLeft { get; set; }
}