15 lines
355 B
C#
15 lines
355 B
C#
using System.Globalization;
|
|
using YoutubeExplode.Models.ClosedCaptions;
|
|
|
|
namespace YouTube.Models
|
|
{
|
|
public class ClosedCaptionInfo
|
|
{
|
|
public CultureInfo Language { get; set; }
|
|
public string Url { get; set; }
|
|
public bool AutoGenerated { get; set; }
|
|
|
|
internal ClosedCaptionTrackInfo TrackInfo { get; set; }
|
|
}
|
|
}
|