mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 19:42:50 +01:00
9 lines
195 B
C#
9 lines
195 B
C#
using MediaBrowser.Controller.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public class Channel : BaseItem
|
|
{
|
|
public string OriginalChannelName { get; set; }
|
|
}
|
|
}
|