Initial ...

This commit is contained in:
2026-03-22 14:08:25 +03:30
commit d3464ef39c
71 changed files with 19087 additions and 0 deletions
@@ -0,0 +1,18 @@
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; }
}
}