Files
stream-cinema/StreamCinemaLib/API/StreamSubtitle.cs

10 lines
176 B
C#

using System;
namespace StreamCinemaLib.API;
public class StreamSubtitle
{
public string language { get; set; } // two letter ISO code
public bool forced { get; set; }
}