using System; namespace StreamCinemaLib.API; public class InfoLabels { public string? originaltitle { get; set; } public List? genre { get; set; } // ie. "Reality","Competitive", "Reality-TV", "Food", "Game Show" public int year { get; set; } public List? director { get; set; } // people names like "David Slabý" public List? studio { get; set; } // people names like "Česká televize" public List? writer { get; set; } // people names like "Michaela Hronová" public DateTime? premiered { get; set; } public DateTime? aired { get; set; } public DateTime? dateadded { get; set; } public string? mediatype { get; set; } public List? country { get; set; }// ie. "CZ", "Czech Republic" public string? status { get; set; } // ie. "Returning Series" public double? duration { get; set; } // in seconds }