Files
stream-cinema/StreamCinemaLib/API/StreamSubtitle.cs
Roman Vanicek 470fa96b17
All checks were successful
continuous-integration/drone/push Build is passing
Externi titulky
2024-11-11 12:42:36 +01:00

11 lines
274 B
C#

using System;
namespace StreamCinemaLib.API;
public class StreamSubtitle
{
public string language { get; set; } // two letter ISO code
public bool forced { get; set; }
public string? _id { get; set; }
public string? src { get; set; } // url to external subtitles
}