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
456 B
16 lines
456 B
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Common.Security
|
|
{
|
|
public interface IRequiresRegistration
|
|
{
|
|
/// <summary>
|
|
/// Load all registration information required for this entity.
|
|
/// Your class should re-load all MBRegistrationRecords when this is called even if they were
|
|
/// previously loaded.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task LoadRegistrationInfoAsync();
|
|
}
|
|
}
|