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

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