Basic search UI (no download links yet)

This commit is contained in:
2024-11-09 17:13:02 +01:00
parent 804e5e91a0
commit bfb76389cf
35 changed files with 5502 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
using System;
namespace StreamCinemaLib.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; }
}