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

11 lines
147 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,
Photo = 2
2014-05-11 23:02:28 +00:00
}
}