16 lines
452 B
C#
16 lines
452 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|