namespace MediaBrowser.Controller.Entities
{
///
/// The source of an item.
///
public enum SourceType
{
///
/// The item comes from a library.
///
Library = 0,
///
/// The item comes from a channel.
///
Channel = 1,
///
/// The item comes from live TV.
///
LiveTV = 2
}
}