jellyfin/Emby.Dlna/Common/Argument.cs

13 lines
224 B
C#
Raw Normal View History

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
{
public class Argument
{
public string Name { get; set; }
public string Direction { get; set; }
public string RelatedStateVariable { get; set; }
}
}