aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/Argument.cs
blob: 7e61c3d6d5f45e87d9a8dc37cb62152908632398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Emby.Dlna.Common
{  
    public class Argument
    {
        public string Name { get;  set; }

        public string Direction { get;  set; }

        public string RelatedStateVariable { get;  set; }
    }
}