jellyfin/MediaBrowser.Common/Security/IRequiresRegistration.cs
2018-12-27 18:27:57 -05:00

16 lines
456 B
C#

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();
}
}