aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/PlayRequestDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Api/Models/SyncPlayDtos/PlayRequestDto.cs')
-rw-r--r--Jellyfin.Api/Models/SyncPlayDtos/PlayRequestDto.cs51
1 files changed, 25 insertions, 26 deletions
diff --git a/Jellyfin.Api/Models/SyncPlayDtos/PlayRequestDto.cs b/Jellyfin.Api/Models/SyncPlayDtos/PlayRequestDto.cs
index 844388cd9..e0edaf5e0 100644
--- a/Jellyfin.Api/Models/SyncPlayDtos/PlayRequestDto.cs
+++ b/Jellyfin.Api/Models/SyncPlayDtos/PlayRequestDto.cs
@@ -1,37 +1,36 @@
using System;
using System.Collections.Generic;
-namespace Jellyfin.Api.Models.SyncPlayDtos
+namespace Jellyfin.Api.Models.SyncPlayDtos;
+
+/// <summary>
+/// Class PlayRequestDto.
+/// </summary>
+public class PlayRequestDto
{
/// <summary>
- /// Class PlayRequestDto.
+ /// Initializes a new instance of the <see cref="PlayRequestDto"/> class.
/// </summary>
- public class PlayRequestDto
+ public PlayRequestDto()
{
- /// <summary>
- /// Initializes a new instance of the <see cref="PlayRequestDto"/> class.
- /// </summary>
- public PlayRequestDto()
- {
- PlayingQueue = Array.Empty<Guid>();
- }
+ PlayingQueue = Array.Empty<Guid>();
+ }
- /// <summary>
- /// Gets or sets the playing queue.
- /// </summary>
- /// <value>The playing queue.</value>
- public IReadOnlyList<Guid> PlayingQueue { get; set; }
+ /// <summary>
+ /// Gets or sets the playing queue.
+ /// </summary>
+ /// <value>The playing queue.</value>
+ public IReadOnlyList<Guid> PlayingQueue { get; set; }
- /// <summary>
- /// Gets or sets the position of the playing item in the queue.
- /// </summary>
- /// <value>The playing item position.</value>
- public int PlayingItemPosition { get; set; }
+ /// <summary>
+ /// Gets or sets the position of the playing item in the queue.
+ /// </summary>
+ /// <value>The playing item position.</value>
+ public int PlayingItemPosition { get; set; }
- /// <summary>
- /// Gets or sets the start position ticks.
- /// </summary>
- /// <value>The start position ticks.</value>
- public long StartPositionTicks { get; set; }
- }
+ /// <summary>
+ /// Gets or sets the start position ticks.
+ /// </summary>
+ /// <value>The start position ticks.</value>
+ public long StartPositionTicks { get; set; }
}