Files
stream-cinema/CinemaLib/API/InfoLabels.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

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
}