15 lines
588 B
C#
15 lines
588 B
C#
using xIdentityService.Constants;
|
|
|
|
namespace xIdentityService.Configuration {
|
|
public partial class XIdentityServiceConfiguration {
|
|
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 XTokenType TokenType { get; set; }
|
|
public string XRevisionSecretKey { get; set; }
|
|
public int DefaultClientTimeout { get; set; } = 360;
|
|
}
|
|
} |