2019-01-13 19:16:19 +00:00
|
|
|
|
using System;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
|
2016-10-29 22:34:54 +00:00
|
|
|
|
namespace Emby.Dlna.Common
|
2016-10-29 22:22:20 +00:00
|
|
|
|
{
|
|
|
|
|
public class StateVariable
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public string DataType { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool SendsEvents { get; set; }
|
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
|
public string[] AllowedValues { get; set; }
|
2016-10-29 22:22:20 +00:00
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return Name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public StateVariable()
|
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
|
AllowedValues = Array.Empty<string>();
|
2016-10-29 22:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|