1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2020-05-10 15:11:42 +03:00

14 lines
321 B
C#

using System.Globalization;
using YoutubeExplode.Videos.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; }
}
}