aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/SourceType.cs
blob: 927483b93983e643214267f031d20713880b1561 (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Controller.Entities
{
    public enum SourceType
    {
        Library = 0,
        Channel = 1,
        LiveTV = 2
    }
}