Skip to content

Commit

Permalink
Merge pull request #26 from gldraphael/add-summary-comments-for-intel…
Browse files Browse the repository at this point in the history
…lisense

Add summary comments to SubtitleItem "times"
  • Loading branch information
AlexPoint authored Jan 8, 2020
2 parents 3a3f099 + 4540e61 commit b25815f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion SubtitlesParser/Classes/SubtitleItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ public class SubtitleItem

//Properties------------------------------------------------------------------

//StartTime and EndTime times are in milliseconds
/// <summary>
/// Start time in milliseconds.
/// </summary>
public int StartTime { get; set; }
/// <summary>
/// End time in milliseconds.
/// </summary>
public int EndTime { get; set; }
public List<string> Lines { get; set; }

Expand Down

0 comments on commit b25815f

Please sign in to comment.