mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-13 05:42:16 +01:00
21 lines
482 B
C#
21 lines
482 B
C#
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Model.LiveTv;
|
|
|
|
namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.SatIp
|
|
{
|
|
public class ChannelScan
|
|
{
|
|
public async Task<List<SatChannel>> Scan(TunerHostInfo info, CancellationToken cancellationToken)
|
|
{
|
|
return new List<SatChannel>();
|
|
}
|
|
}
|
|
|
|
public class SatChannel
|
|
{
|
|
// TODO: Add properties
|
|
}
|
|
}
|