All checks were successful
continuous-integration/drone/push Build is passing
11 lines
268 B
C#
11 lines
268 B
C#
using System;
|
|
|
|
namespace CinemaLib.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
|
|
} |