1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2024-09-16 05:30:09 +00:00
MpcNET/LibMpc/Message/MpdRequest.cs

17 lines
316 B
C#
Raw Normal View History

2016-12-06 11:53:49 +00:00
namespace LibMpc
{
public interface IMpdRequest
{
IMpcCommand Command { get; }
}
public class MpdRequest : IMpdRequest
{
public MpdRequest(IMpcCommand command)
{
Command = command;
}
public IMpcCommand Command { get; }
}
}