aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs
diff options
context:
space:
mode:
authorDominik <git@secnd.me>2023-06-15 19:38:42 +0200
committerGitHub <noreply@github.com>2023-06-15 19:38:42 +0200
commit17f1e8d19b1fd693893d66d2275ed8ae2476344e (patch)
tree7f48be975faa92042769870957587b3c7864f631 /Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs
parente8ae7e5c38e28f13fa8de295e26c930cb46d9b79 (diff)
parent6771b5cabe96b4b3cbd1cd0c998d564f3dd17ed4 (diff)
Merge branch 'master' into segment-deletion
Diffstat (limited to 'Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs')
-rw-r--r--Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs61
1 files changed, 30 insertions, 31 deletions
diff --git a/Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs b/Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs
index 479c44084..e7613911e 100644
--- a/Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs
+++ b/Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs
@@ -1,42 +1,41 @@
using System;
-namespace Jellyfin.Api.Models.SyncPlayDtos
+namespace Jellyfin.Api.Models.SyncPlayDtos;
+
+/// <summary>
+/// Class BufferRequestDto.
+/// </summary>
+public class BufferRequestDto
{
/// <summary>
- /// Class BufferRequestDto.
+ /// Initializes a new instance of the <see cref="BufferRequestDto"/> class.
/// </summary>
- public class BufferRequestDto
+ public BufferRequestDto()
{
- /// <summary>
- /// Initializes a new instance of the <see cref="BufferRequestDto"/> class.
- /// </summary>
- public BufferRequestDto()
- {
- PlaylistItemId = Guid.Empty;
- }
+ PlaylistItemId = Guid.Empty;
+ }
- /// <summary>
- /// Gets or sets when the request has been made by the client.
- /// </summary>
- /// <value>The date of the request.</value>
- public DateTime When { get; set; }
+ /// <summary>
+ /// Gets or sets when the request has been made by the client.
+ /// </summary>
+ /// <value>The date of the request.</value>
+ public DateTime When { get; set; }
- /// <summary>
- /// Gets or sets the position ticks.
- /// </summary>
- /// <value>The position ticks.</value>
- public long PositionTicks { get; set; }
+ /// <summary>
+ /// Gets or sets the position ticks.
+ /// </summary>
+ /// <value>The position ticks.</value>
+ public long PositionTicks { get; set; }
- /// <summary>
- /// Gets or sets a value indicating whether the client playback is unpaused.
- /// </summary>
- /// <value>The client playback status.</value>
- public bool IsPlaying { get; set; }
+ /// <summary>
+ /// Gets or sets a value indicating whether the client playback is unpaused.
+ /// </summary>
+ /// <value>The client playback status.</value>
+ public bool IsPlaying { get; set; }
- /// <summary>
- /// Gets or sets the playlist item identifier of the playing item.
- /// </summary>
- /// <value>The playlist item identifier.</value>
- public Guid PlaylistItemId { get; set; }
- }
+ /// <summary>
+ /// Gets or sets the playlist item identifier of the playing item.
+ /// </summary>
+ /// <value>The playlist item identifier.</value>
+ public Guid PlaylistItemId { get; set; }
}