You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
452 B
16 lines
452 B
using MediaBrowser.Model.Entities;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
public interface IHasRegistrationInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets the registration information.
|
|
/// </summary>
|
|
/// <param name="feature">The feature.</param>
|
|
/// <returns>Task<MBRegistrationRecord>.</returns>
|
|
Task<MBRegistrationRecord> GetRegistrationInfo(string feature);
|
|
}
|
|
}
|