This commit is contained in:
20
CinemaLib/API/InfoLabels.cs
Normal file
20
CinemaLib/API/InfoLabels.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace CinemaLib.API;
|
||||
|
||||
public class InfoLabels
|
||||
{
|
||||
public string? originaltitle { get; set; }
|
||||
public List<string>? genre { get; set; } // ie. "Reality","Competitive", "Reality-TV", "Food", "Game Show"
|
||||
public int year { get; set; }
|
||||
public List<string>? director { get; set; } // people names like "David Slabý"
|
||||
public List<string>? studio { get; set; } // people names like "Česká televize"
|
||||
public List<string>? 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<string>? country { get; set; }// ie. "CZ", "Czech Republic"
|
||||
public string? status { get; set; } // ie. "Returning Series"
|
||||
public double? duration { get; set; } // in seconds
|
||||
}
|
||||
Reference in New Issue
Block a user