mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 23:13:06 +03:00
17 lines
223 B
C#
17 lines
223 B
C#
|
|
namespace MediaBrowser.Controller.Channels
|
|||
|
|
{
|
|||
|
|
public enum ChannelMediaContentType
|
|||
|
|
{
|
|||
|
|
Clip = 0,
|
|||
|
|
|
|||
|
|
Podcast = 1,
|
|||
|
|
|
|||
|
|
Trailer = 2,
|
|||
|
|
|
|||
|
|
Movie = 3,
|
|||
|
|
|
|||
|
|
Episode = 4,
|
|||
|
|
|
|||
|
|
Song = 5
|
|||
|
|
}
|
|||
|
|
}
|