using System; 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 DateTime? WatchedAt { get; set; } /// /// Gets or sets the title. /// [JsonPropertyName("title")] public string? Title { get; set; } /// /// Gets or sets the season. /// [JsonPropertyName("season")] public int? Season { get; set; } /// /// Gets or sets the episode. /// [JsonPropertyName("episode")] public int? Episode { get; set; } /// /// Gets or sets multipart. /// [JsonPropertyName("multipart")] public bool? Multipart { get; set; } } }