aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/PlayMethod.cs
blob: 9b8f0052a10f5e5a184f3f19c9aa153fdb253031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma warning disable CS1591
#pragma warning disable SA1600

namespace MediaBrowser.Model.Session
{
    public enum PlayMethod
    {
        Transcode = 0,
        DirectStream = 1,
        DirectPlay = 2
    }
}