namespace Oqtane.Models { /// /// Passkey properties /// public class UserLogin { /// /// the login provider for this login /// public string Provider { get; set; } /// /// The key for this login /// public string Key { get; set; } /// /// The friendly name for the login provider /// public string Name { get; set; } } }