using System; using System.Collections.Generic; using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Movie dto. /// public class MovieDto { /// /// Gets or sets the year. /// [JsonPropertyName("year")] public string? Year { get; set; } /// /// Gets or sets the duration. /// [JsonPropertyName("duration")] public int Duration { get; set; } /// /// Gets or sets the list of quality rating. /// [JsonPropertyName("qualityRating")] public IReadOnlyList QualityRating { get; set; } = Array.Empty(); } }