1
0

Indetation formatting and unnecessary usings cleanup

This commit is contained in:
Michael Gordeev
2020-05-10 13:47:42 +03:00
parent f968c95ab1
commit 1d636120cc
20 changed files with 684 additions and 702 deletions
+12 -12
View File
@@ -4,16 +4,16 @@ using System.Text;
namespace YouTube.Models
{
public class ClosedCaptionTrack
{
public ClosedCaptionInfo Info { get; set; }
public IReadOnlyList<ClosedCaption> Captions { get; set; }
public class ClosedCaptionTrack
{
public ClosedCaptionInfo Info { get; set; }
public IReadOnlyList<ClosedCaption> Captions { get; set; }
public class ClosedCaption
{
public TimeSpan Offset { get; set; }
public TimeSpan Duration { get; set; }
public string Content { get; set; }
}
}
}
public class ClosedCaption
{
public TimeSpan Offset { get; set; }
public TimeSpan Duration { get; set; }
public string Content { get; set; }
}
}
}