mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
10 lines
174 B
C#
10 lines
174 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Common.Security
|
|||
|
|
{
|
|||
|
|
public interface IRequiresRegistration
|
|||
|
|
{
|
|||
|
|
Task LoadRegistrationInfoAsync();
|
|||
|
|
}
|
|||
|
|
}
|