JiShe.CollectBus/web/JiShe.CollectBus.Host/CollectBusHostConst.cs
2025-04-23 14:46:19 +08:00

41 lines
1001 B
C#

namespace JiShe.CollectBus.Host
{
/// <summary>
/// CollectBusHostConst
/// </summary>
public static class CollectBusHostConst
{
/// <summary>
/// 跨域策略名
/// </summary>
public const string DefaultCorsPolicyName = "Default";
/// <summary>
/// Cookies名称
/// </summary>
public const string DefaultCookieName = "JiShe.CollectBus.Host";
/// <summary>
/// SwaggerUi 端点
/// </summary>
public const string SwaggerUiEndPoint = "/swagger";
/// <summary>
/// Hangfire 端点
/// </summary>
public const string HangfireDashboardEndPoint = "/hangfire";
/// <summary>
/// 健康检查 端点
/// </summary>
public const string HealthEndPoint = "/health";
/// <summary>
/// 健康检查 端点
/// </summary>
public const string HealthDashboardEndPoint = "/health-ui";
}
}