mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 12:35:16 +01:00
13 lines
288 B
C#
13 lines
288 B
C#
using MediaBrowser.Controller.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public interface IChannelItem : IHasImages, IHasTags
|
|
{
|
|
string ChannelId { get; set; }
|
|
|
|
string ExternalId { get; set; }
|
|
|
|
string ExternalImagePath { get; set; }
|
|
}
|
|
}
|