using System.Threading.Tasks;
namespace MediaBrowser.Common.Security
{
    public interface IRequiresRegistration
    {
        /// 
        /// 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.
        /// 
        /// 
        Task LoadRegistrationInfoAsync();
    }
}