Files
stream-cinema/CinemaLib/API/MediaSource.cs
Roman Vaníček 0bcb6d571f
All checks were successful
continuous-integration/drone/push Build is passing
Rename to Cinema
2024-11-30 00:50:10 +01:00

26 lines
852 B
C#

using System;
namespace CinemaLib.API;
public class MediaSource
{
public string? original_language { get; set; } // two letter ISO code
public List<string>? languages { get; set; }
public MediaRatings? ratings { get; set; }
// "videos": [],
public InfoLabels? info_labels { get; set; }
public List<Cast>? cast { get; set; }
public List<InfoLabelI18n>? i18n_info_labels { get; set; }
public ServicesIds? services { get; set; }
public MediaStreamInfo? available_streams { get; set; }
// stream_info": { },
public double popularity { get; set; }
public double trending { get; set; }
public int play_count { get; set; }
public int children_count { get; set; }
public int total_children_count { get; set; }
public bool? is_concert { get; set; }
//"tags": [],
public MediaFormatInfo? streams_format_info { get; set; }
}