aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/PlayMethod.cs
blob: 8daf8c953bfc5700703836e794a95f1f0f55bb53 (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Model.Session
{
    public enum PlayMethod
    {
        Transcode = 0,
        DirectStream = 1,
        DirectPlay = 2
    }
}