#nullable disable using System.Collections.Generic; using System.Text.Json.Serialization; namespace Emby.Server.Implementations.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 List QualityRating { get; set; } } }