14 lines
313 B
C#
14 lines
313 B
C#
|
10 years ago
|
|
||
|
|
public interface IApplication
|
||
|
|
{
|
||
|
|
string ApplicationID { get; set; }
|
||
|
|
string DisplayName { get; set; }
|
||
|
|
string RedirectUri { get; set; }
|
||
|
|
string LogoutRedirectUri { get; set; }
|
||
|
|
string Secret { get; set; }
|
||
|
|
}
|
||
|
|
public interface IApplicationStore
|
||
|
|
{
|
||
|
|
IApplication FindApplication(string clientId);
|
||
|
|
|
||
|
|
}
|