2026-06-18 09:38:23 +08:00

24 lines
484 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace AppleAuth.Enums
{
[Flags]
public enum LoginOptions
{
/// <summary>
/// Empty scope. No full name or email
/// </summary>
None = 0,
/// <summary>
/// A scope that includes the users full name.
/// </summary>
IncludeFullName = 1 << 0,
/// <summary>
/// A scope that includes the users email address
/// </summary>
IncludeEmail = 1 << 1,
}
}