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