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