aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/Argument.cs
blob: f375e6049ccb902db53a80c7bc60a9e0a5784c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma warning disable CS1591

namespace Emby.Dlna.Common
{
    public class Argument
    {
        public string Name { get; set; }

        public string Direction { get; set; }

        public string RelatedStateVariable { get; set; }
    }
}