Skip to content

Instantly share code, notes, and snippets.

@Sofronio
Last active May 5, 2018 04:46
Show Gist options
  • Save Sofronio/e812ddec61894de2d80170d3d94471f8 to your computer and use it in GitHub Desktop.
Save Sofronio/e812ddec61894de2d80170d3d94471f8 to your computer and use it in GitHub Desktop.
YouTube2SubtitleClass
class subtitle
{
public string Content
{
get
{
return content;
}
set
{
content = value;
}
}
public string WordStart
{
get
{
return timeStart;
}
set
{
timeStart = value;
}
}
public string WordEnd
{
get
{
return timeEnd;
}
set
{
timeEnd = value;
}
}
public int Position
{
get
{
return position;
}
set
{
position = value;
}
}
public bool Selected
{
get
{
return selected;
}
set
{
selected = value;
}
}
public string Color
{
get
{
return color;
}
set
{
color = value;
}
}
public int LineNumber
{
get
{
return lineNumber;
}
set
{
lineNumber = value;
}
}
public string NextStart
{
get
{
return nextStart;
}
set
{
nextStart = value;
}
}
public string NextEnd
{
get
{
return nextEnd;
}
set
{
nextEnd = value;
}
}
public string ColorNext
{
get
{
return colorNext;
}
set
{
colorNext = value;
}
}
private string content;
private string timeStart;
private string timeEnd;
private string nextStart;
private string nextEnd;
private int position;
private bool selected;
private string color;
private string colorNext;
private int lineNumber;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment