mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
21 lines
486 B
C#
21 lines
486 B
C#
namespace LibMpc.Types
|
|
{
|
|
/// <summary>
|
|
/// The MpdOutput class contains all attributes of an output device of the MPD.
|
|
/// </summary>
|
|
public class MpdOutput
|
|
{
|
|
public MpdOutput(int id, string name, bool enabled)
|
|
{
|
|
name.CheckNotNull();
|
|
|
|
Id = id;
|
|
Name = name;
|
|
IsEnabled = enabled;
|
|
}
|
|
|
|
public int Id { get; }
|
|
public string Name { get; }
|
|
public bool IsEnabled { get; }
|
|
}
|
|
} |