jellyfin/MediaBrowser.Model/Session/PlayMethod.cs

10 lines
152 B
C#
Raw Normal View History

namespace MediaBrowser.Model.Session
2018-12-28 00:27:57 +01:00
{
public enum PlayMethod
{
Transcode = 0,
DirectStream = 1,
DirectPlay = 2
}
}