mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
13 lines
290 B
C#
13 lines
290 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 int RateLeft { get; set; }
|
|
}
|