mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 17:02:58 +01:00
9 lines
174 B
C#
9 lines
174 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Common.Security
|
|
{
|
|
public interface IRequiresRegistration
|
|
{
|
|
Task LoadRegistrationInfoAsync();
|
|
}
|
|
}
|