UPF/Assets/AppleAuth/Interfaces/ICredential.cs
2023-02-24 22:14:55 +05:30

11 lines
219 B
C#
Executable File

namespace AppleAuth.Interfaces
{
public interface ICredential
{
/// <summary>
/// An identifier associated with the authenticated user
/// </summary>
string User { get; }
}
}