namespace StopShopping.Services.Extensions;
///
/// 业务配置
///
public record AppOptions
{
///
/// 文件服务站点
///
///
public string FileApiDomain { get; set; } = string.Empty;
///
/// 文件服务本地站点
///
///
public string FileApiLocalDomain { get; set; } = string.Empty;
///
/// .bjbj.me
///
///
public string CookieDomain { get; set; } = string.Empty;
///
/// anti-forgery 请求头
///
///
public string CSRFHeaderName { get; set; } = string.Empty;
///
/// anti-forgery cookie's name
///
///
public string CSRFCookieName { get; set; } = string.Empty;
///
/// 跨域站点
///
///
public string[] CorsAllowedOrigins { get; set; } = [];
}