11 lines
219 B
C#
Raw Normal View History

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