aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/DeviceService.cs
blob: c60d65291332aac6a88885a825d6e74d099d317b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace Emby.Dlna.Common
{
    public class DeviceService
    {
        public string ServiceType { get; set; }

        public string ServiceId { get; set; }

        public string ScpdUrl { get; set; }

        public string ControlUrl { get; set; }

        public string EventSubUrl { get; set; }

        public override string ToString()
        {
            return string.Format("{0}", ServiceId);
        }
    }
}