Project_WL/Assets/ThirdParty/AppleAuth/Interfaces/ICredential.cs

11 lines
219 B
C#
Raw Normal View History

2024-12-18 06:23:47 +00:00
namespace AppleAuth.Interfaces
{
public interface ICredential
{
/// <summary>
/// An identifier associated with the authenticated user
/// </summary>
string User { get; }
}
}