aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/DeviceProfileType.cs
blob: 46062abd091dddd026ef87bc7afcda1486f78346 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma warning disable CS1591

namespace MediaBrowser.Model.Dlna
{
    public enum DeviceProfileType
    {
        System = 0,
        User = 1
    }
}