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; } } }