This commit is contained in:
telans
2020-06-14 22:14:14 +12:00
parent 3d9049ef08
commit 9b528aabc2
4 changed files with 21 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ namespace MediaBrowser.Controller.SyncPlay
public class GroupInfo
{
/// <summary>
/// Default ping value used for sessions.
/// Gets the default ping value used for sessions.
/// </summary>
public long DefaulPing { get; } = 500;
@@ -31,13 +31,13 @@ namespace MediaBrowser.Controller.SyncPlay
public BaseItem PlayingItem { get; set; }
/// <summary>
/// Gets or sets whether playback is paused.
/// Gets or sets a value indicating whether playback is paused.
/// </summary>
/// <value>Playback is paused.</value>
public bool IsPaused { get; set; }
/// <summary>
/// Gets or sets the position ticks.
/// Gets or sets a value indicating whether there are position ticks.
/// </summary>
/// <value>The position ticks.</value>
public long PositionTicks { get; set; }