13 lines
330 B
C#
13 lines
330 B
C#
using System;
|
|
|
|
namespace CinemaLib.API;
|
|
|
|
public class StreamSubtitle
|
|
{
|
|
#pragma warning disable CS8618
|
|
public string language { get; set; } // two letter ISO code
|
|
#pragma warning restore CS8618
|
|
public bool forced { get; set; }
|
|
public string? _id { get; set; }
|
|
public string? src { get; set; } // url to external subtitles
|
|
} |