jellyfin/Emby.Dlna/Common/StateVariable.cs

35 lines
965 B
C#
Raw Normal View History

using System;
2020-08-20 21:04:57 +02:00
using System.Collections.Generic;
2016-10-30 00:22:20 +02:00
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.Common
2016-10-30 00:22:20 +02:00
{
2020-09-13 14:49:11 +02:00
/// <summary>
/// Defines the <see cref="StateVariable" />.
/// </summary>
2016-10-30 00:22:20 +02:00
public class StateVariable
{
2020-09-13 14:49:11 +02:00
/// <summary>
/// Gets or sets the name of the state variable.
/// </summary>
public string Name { get; set; } = string.Empty;
2016-10-30 00:22:20 +02:00
2020-09-13 14:49:11 +02:00
/// <summary>
/// Gets or sets the data type of the state variable.
/// </summary>
public string DataType { get; set; } = string.Empty;
2016-10-30 00:22:20 +02:00
2020-09-13 14:49:11 +02:00
/// <summary>
/// Gets or sets a value indicating whether it sends events.
/// </summary>
2016-10-30 00:22:20 +02:00
public bool SendsEvents { get; set; }
2020-09-13 14:49:11 +02:00
/// <summary>
/// Gets or sets the allowed values range.
/// </summary>
public IReadOnlyList<string> AllowedValues { get; set; } = Array.Empty<string>();
2016-10-30 00:22:20 +02:00
/// <inheritdoc />
2020-09-13 14:49:11 +02:00
public override string ToString() => Name;
2016-10-30 00:22:20 +02:00
}
}