mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
11 lines
175 B
C#
11 lines
175 B
C#
namespace MediaBrowser.Model.LiveTv
|
|
{
|
|
public enum LiveTvTunerStatus
|
|
{
|
|
Available = 0,
|
|
Disabled = 1,
|
|
RecordingTv = 2,
|
|
LiveTv = 3
|
|
}
|
|
}
|