Files
pgsql-jellyfin/Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs
wjones af1152b001 Refactor: standardize namespace and using directive style
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
2026-02-20 16:26:53 -05:00

46 lines
1.2 KiB
C#

// <copyright file="BufferRequestDto.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace Jellyfin.Api.Models.SyncPlayDtos;
using System;
/// <summary>
/// Class BufferRequestDto.
/// </summary>
public class BufferRequestDto
{
/// <summary>
/// Initializes a new instance of the <see cref="BufferRequestDto"/> class.
/// </summary>
public BufferRequestDto()
{
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 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 the playlist item identifier of the playing item.
/// </summary>
/// <value>The playlist item identifier.</value>
public Guid PlaylistItemId { get; set; }
}