Backend/e-suite.Automation.UITests/ESuite.UI.E2E/Models/SsoData.cs
2026-01-20 21:50:10 +00:00

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; }
}
}