using System.Collections.Generic; namespace Dough.Models { public static class Constants { public static readonly string[] BrowserAppUrls = { "http://localhost:8080", "http://localhost:3000", }; public static readonly string[] BrowserAppLoginRedirectUrls = { "http://localhost:8080/signin-oidc", "http://localhost:3000/signin-oidc", }; public static readonly string[] BrowserAppLogoutRedirectUrls = { "http://localhost:8080/signout-callback-oidc", "http://localhost:3000/signout-callback-oidc", }; } }