af1152b001
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.
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
// <copyright file="IGroupPlaybackRequest.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay
|
|
{
|
|
#nullable disable
|
|
|
|
using System.Threading;
|
|
using MediaBrowser.Controller.Session;
|
|
using MediaBrowser.Model.SyncPlay;
|
|
|
|
/// <summary>
|
|
/// Interface IGroupPlaybackRequest.
|
|
/// </summary>
|
|
public interface IGroupPlaybackRequest : ISyncPlayRequest
|
|
{
|
|
/// <summary>
|
|
/// Gets the playback request type.
|
|
/// </summary>
|
|
/// <returns>The playback request type.</returns>
|
|
PlaybackRequestType Action { get; }
|
|
|
|
/// <summary>
|
|
/// Applies the request to a group.
|
|
/// </summary>
|
|
/// <param name="context">The context of the state.</param>
|
|
/// <param name="state">The current state.</param>
|
|
/// <param name="session">The session.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
void Apply(IGroupStateContext context, IGroupState state, SessionInfo session, CancellationToken cancellationToken);
|
|
}
|
|
}
|