jellyfin/Emby.Dlna/Common/Argument.cs

13 lines
216 B
C#
Raw Normal View History

2016-10-29 18:34:54 -04:00
namespace Emby.Dlna.Common
2019-01-07 18:27:46 -05:00
{
2016-10-29 18:22:20 -04:00
public class Argument
{
2019-01-13 14:16:19 -05:00
public string Name { get; set; }
2016-10-29 18:22:20 -04:00
2019-01-13 14:16:19 -05:00
public string Direction { get; set; }
2016-10-29 18:22:20 -04:00
2019-01-13 14:16:19 -05:00
public string RelatedStateVariable { get; set; }
2016-10-29 18:22:20 -04:00
}
}