7 lines
226 B
C#
7 lines
226 B
C#
namespace Wave.Data;
|
|
|
|
public class OidcConfiguration {
|
|
public string Authority { get; set; } = string.Empty;
|
|
public string ClientId { get; set; } = string.Empty;
|
|
public string ClientSecret { get; set; } = string.Empty;
|
|
} |