14 lines
431 B
C#
14 lines
431 B
C#
namespace ESuite.UI.E2E.Models
|
|
{
|
|
public class SsoData
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? ClientID { get; set; }
|
|
public string? ClientSecret { get; set; }
|
|
public string? ValidIssuer { get; set; }
|
|
public string? AuthorisationEndpoint { get; set; }
|
|
public string? TokenEndpoint { get; set; }
|
|
public string? IsPublic { get; set; }
|
|
}
|
|
}
|