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

        public string Direction { get;  set; }

        public string RelatedStateVariable { get;  set; }
    }
}