jellyfin/MediaBrowser.Common/Security/IRequiresRegistration.cs

16 lines
456 B
C#
Raw Normal View History

2018-12-27 23:27:57 +00:00
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();
}
}