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