mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-07-01 08:47:36 +00:00
Rewrote most of the library
This commit is contained in:
23
Sources/MpcNET/Message/IMpdRequest.cs
Normal file
23
Sources/MpcNET/Message/IMpdRequest.cs
Normal file
@ -0,0 +1,23 @@
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
// <copyright file="IMpdRequest.cs" company="Hukano">
|
||||
// Copyright (c) Hukano. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
// </copyright>
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
namespace MpcNET.Message
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface for implementing a MPD request.
|
||||
/// </summary>
|
||||
/// <typeparam name="TContent">The response content.</typeparam>
|
||||
public interface IMpdRequest<out TContent>
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the command.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The command.
|
||||
/// </value>
|
||||
IMpcCommand<TContent> Command { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user