Crunchy-Downloader/CRD/Utils/Sonarr/Models/SonarrImage.cs

21 lines
490 B
C#
Raw Normal View History

2024-05-25 22:02:45 +00:00
using Newtonsoft.Json;
namespace CRD.Utils.Sonarr.Models;
public class SonarrImage{
/// <summary>
/// Gets or sets the type of the cover.
/// </summary>
/// <value>
/// The type of the cover.
/// </value>
[JsonProperty("coverType")] public SonarrCoverType CoverType { get; set; }
/// <summary>
/// Gets or sets the URL.
/// </summary>
/// <value>
/// The URL.
/// </value>
[JsonProperty("url")] public string Url { get; set; }
}