You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
287 B
9 lines
287 B
namespace Identity.Api.Clean.Contracts.Models;
|
|
public class ContextModel
|
|
{
|
|
public string LoginHint { get; set; }
|
|
public string IdP { get; set; }
|
|
public string Tenant { get; set; }
|
|
public IEnumerable<string> Scopes { get; set; }
|
|
public string Client { get; set; }
|
|
}
|