mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-18 12:30:34 -04:00
Co-authored-by: DieselTech <30128380+DieselTech@users.noreply.github.com> Co-authored-by: majora2007 <josephmajora@gmail.com>
15 lines
268 B
C#
15 lines
268 B
C#
using System.ComponentModel;
|
|
|
|
namespace API.Entities.Enums;
|
|
|
|
/// <summary>
|
|
/// Who provides the identity of the user
|
|
/// </summary>
|
|
public enum IdentityProvider
|
|
{
|
|
[Description("Kavita")]
|
|
Kavita = 0,
|
|
[Description("OpenID Connect")]
|
|
OpenIdConnect = 1,
|
|
}
|