mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-20 23:02:33 -04:00
14a8f5c1e5
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
14 lines
339 B
C#
14 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; }
|
|
}
|