blob: b9df01f277a88b1ec63989f2a9435074aaa26b7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma warning disable CS1591
namespace MediaBrowser.Model.MediaInfo
{
public enum MediaProtocol
{
File = 0,
Http = 1,
Rtmp = 2,
Rtsp = 3,
Udp = 4,
Rtp = 5,
Ftp = 6
}
}
|