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