diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-02-21 17:36:54 -0500 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2016-02-21 17:36:54 -0500 |
| commit | 36304972375ec857772ed00b1fd02ee51595b94a (patch) | |
| tree | ebb9a7f0cb507fb391a563622fdd6bfb496d49ff /MediaBrowser.Controller | |
| parent | 95366710b798d54477a8ffa95933d21abf35aba0 (diff) | |
| parent | c3361458adfd9fcdbf1431de52826f05feaf1d11 (diff) | |
Merge pull request #1487 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/LiveTvTunerInfo.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveTvTunerInfo.cs b/MediaBrowser.Controller/LiveTv/LiveTvTunerInfo.cs index 46cf4dd98c..2b1e2f21d6 100644 --- a/MediaBrowser.Controller/LiveTv/LiveTvTunerInfo.cs +++ b/MediaBrowser.Controller/LiveTv/LiveTvTunerInfo.cs @@ -59,6 +59,12 @@ namespace MediaBrowser.Controller.LiveTv /// <value>The clients.</value> public List<string> Clients { get; set; } + /// <summary> + /// Gets or sets a value indicating whether this instance can reset. + /// </summary> + /// <value><c>true</c> if this instance can reset; otherwise, <c>false</c>.</value> + public bool CanReset { get; set; } + public LiveTvTunerInfo() { Clients = new List<string>(); |
