aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/DlnaProfileType.cs
blob: 1bb885c447625e7fbcf2741ea9b9c885753851e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma warning disable CS1591

namespace MediaBrowser.Model.Dlna
{
    public enum DlnaProfileType
    {
        Audio = 0,
        Video = 1,
        Photo = 2,
        Subtitle = 3,
        Lyric = 4
    }
}