namespace API.DTOs.Scrobbling; /// /// Response from Kavita+ Scrobble API /// public class ScrobbleResponseDto { public bool Successful { get; set; } public string? ErrorMessage { get; set; } public int RateLeft { get; set; } }