1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace Teknik.Configuration
- {
- public class IdentityServerConfig
- {
- public string Authority { get; set; }
-
- public string ClientId { get; set; }
- public string ClientSecret { get; set; }
- public List<string> RedirectUris { get; set; }
- public List<string> PostLogoutRedirectUris { get; set; }
- public List<string> AllowedCorsOrigins { get; set; }
-
- public string APIName { get; set; }
- public string APISecret { get; set; }
-
- public IdentityServerConfig()
- {
- Authority = "https://localhost:5002";
- ClientId = "mvc.client";
- ClientSecret = "mysecret";
- RedirectUris = new List<string>();
- PostLogoutRedirectUris = new List<string>();
- AllowedCorsOrigins = new List<string>();
- APIName = "api";
- APISecret = "secret";
- }
- }
- }
|