using System.Text.Json.Serialization; #pragma warning disable SA1300 namespace Jellyfin.Plugin.Simkl.API.Objects { /// /// Simkl episode container. /// public class SimklEpisode : SimklMediaObject { /// /// Gets or sets watched at. /// [JsonPropertyName("watched_at")] public string watched_at { get; set; } /// /// Gets or sets ids. /// public override SimklIds ids { get; set; } /// /// Gets or sets the title. /// public string title { get; set; } /// /// Gets or sets the season. /// public int season { get; set; } /// /// Gets or sets the episode. /// public int episode { get; set; } /// /// Gets or sets multipart. /// public bool? multipart { get; set; } } }