blob: 7b1667c2e2c9e18e67b0ef4518dab8d353409e27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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();
}
}
|