aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/ILiveTvItem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/ILiveTvItem.cs')
-rw-r--r--MediaBrowser.Controller/LiveTv/ILiveTvItem.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvItem.cs b/MediaBrowser.Controller/LiveTv/ILiveTvItem.cs
index 6c277a2e1..36727f4ae 100644
--- a/MediaBrowser.Controller/LiveTv/ILiveTvItem.cs
+++ b/MediaBrowser.Controller/LiveTv/ILiveTvItem.cs
@@ -1,10 +1,10 @@
-using System;
+using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.LiveTv
{
- public interface ILiveTvItem
+ public interface ILiveTvItem : IHasId
{
- Guid Id { get; }
string ServiceName { get; set; }
+ string ExternalId { get; set; }
}
}