jellyfin/Emby.Dlna/Common/StateVariable.cs

27 lines
504 B
C#
Raw Normal View History

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