jellyfin-server/Emby.Dlna/Common/Argument.cs

13 lines
224 B
C#
Raw Normal View History

2016-10-29 22:22:20 +00:00

2016-10-29 22:34:54 +00:00
namespace Emby.Dlna.Common
2016-10-29 22:22:20 +00:00
{
public class Argument
{
public string Name { get; set; }
public string Direction { get; set; }
public string RelatedStateVariable { get; set; }
}
}