aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/DeviceService.cs
blob: 9947ec6b9a6d28d54b052434a1e76812ec653b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma warning disable CS1591
#pragma warning disable SA1600

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; }

        /// <inheritdoc />
        public override string ToString()
            => ServiceId;
    }
}