13 lines
289 B
C#
13 lines
289 B
C#
using System;
|
|
|
|
namespace StreamCinemaLib.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; }
|
|
}
|