using Newtonsoft.Json;
namespace CRD.Utils.Sonarr.Models;
public class SonarrImage{
///
/// Gets or sets the type of the cover.
///
///
/// The type of the cover.
///
[JsonProperty("coverType")] public SonarrCoverType CoverType { get; set; }
///
/// Gets or sets the URL.
///
///
/// The URL.
///
[JsonProperty("url")] public string Url { get; set; }
}