mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-13 12:33:01 +03:00
Add tests for HdHomerunHost.GetLineup
(cherry picked from commit 31e8273795)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
22 lines
463 B
C#
22 lines
463 B
C#
namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|
{
|
|
internal class Channels
|
|
{
|
|
public string GuideNumber { get; set; }
|
|
|
|
public string GuideName { get; set; }
|
|
|
|
public string VideoCodec { get; set; }
|
|
|
|
public string AudioCodec { get; set; }
|
|
|
|
public string URL { get; set; }
|
|
|
|
public bool Favorite { get; set; }
|
|
|
|
public bool DRM { get; set; }
|
|
|
|
public bool HD { get; set; }
|
|
}
|
|
}
|