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

13 lines
283 B
C#

using System;
namespace CinemaLib.API;
public class InfoLabelI18n
{
public string lang { get; set; } // two letter iso code ie. "cs",
public string title { get; set; }
public string? plot { get; set; }
public string? tagline { get; set; }
public Art? art { get; set; }
}