18 lines
530 B
C#
18 lines
530 B
C#
namespace xIds.Configurations
|
|
{
|
|
/// <summary>
|
|
/// determines a resource and it's connection info
|
|
/// </summary>
|
|
public partial class XIdentityResourceConfiguration
|
|
{
|
|
public string Authority { get; set; }
|
|
public string ApiName { get; set; }
|
|
public string ApiSecret { get; set; }
|
|
|
|
public string ClientId { get; set; }
|
|
public string ClientSecret { get; set; }
|
|
|
|
public string XPoweredValue { get; set; }
|
|
public string XRevisionSecretKey { get; set; }
|
|
}
|
|
} |