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

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