jellyfin-server/MediaBrowser.Model/Channels/ChannelMediaType.cs

9 lines
127 B
C#
Raw Normal View History

namespace MediaBrowser.Model.Channels
2014-05-11 23:02:28 +00:00
{
public enum ChannelMediaType
{
Audio = 0,
Video = 1
}
}