All checks were successful
continuous-integration/drone/push Build is passing
21 lines
864 B
C#
21 lines
864 B
C#
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
|
|
}
|