mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
17 lines
334 B
C#
17 lines
334 B
C#
namespace LibMpc
|
|
{
|
|
public interface IMpdRequest<T>
|
|
{
|
|
IMpcCommand<T> Command { get; }
|
|
}
|
|
|
|
public class MpdRequest<T> : IMpdRequest<T>
|
|
{
|
|
public MpdRequest(IMpcCommand<T> command)
|
|
{
|
|
Command = command;
|
|
}
|
|
|
|
public IMpcCommand<T> Command { get; }
|
|
}
|
|
} |