Last active
May 5, 2018 04:46
-
-
Save Sofronio/e812ddec61894de2d80170d3d94471f8 to your computer and use it in GitHub Desktop.
YouTube2SubtitleClass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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