Files
jellyfin-jellyfin-1/Emby.Dlna/Common/Argument.cs

13 lines
224 B
C#
Raw Normal View History

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