jellyfin/Emby.Dlna/Common/Argument.cs

14 lines
247 B
C#
Raw Normal View History

#pragma warning disable CS1591
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.Common
2019-01-08 00:27:46 +01:00
{
2016-10-30 00:22:20 +02:00
public class Argument
{
2019-01-13 20:16:19 +01:00
public string Name { get; set; }
2016-10-30 00:22:20 +02:00
2019-01-13 20:16:19 +01:00
public string Direction { get; set; }
2016-10-30 00:22:20 +02:00
2019-01-13 20:16:19 +01:00
public string RelatedStateVariable { get; set; }
2016-10-30 00:22:20 +02:00
}
}