mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 06:20:33 -04:00
13 lines
282 B
C#
13 lines
282 B
C#
namespace API.DTOs.Scrobbling;
|
|
#nullable enable
|
|
|
|
/// <summary>
|
|
/// Response from Kavita+ Scrobble API
|
|
/// </summary>
|
|
public class ScrobbleResponseDto
|
|
{
|
|
public bool Successful { get; set; }
|
|
public string? ErrorMessage { get; set; }
|
|
public int RateLeft { get; set; }
|
|
}
|