HaniBlindBox/server/HoneyBox/src/HoneyBox.Model/Models/Auth/AppSettings.cs
2026-01-27 13:45:39 +08:00

14 lines
316 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace HoneyBox.Model.Models.Auth;
/// <summary>
/// 应用程序配置
/// </summary>
public class AppSettings
{
/// <summary>
/// 是否测试环境
/// 测试环境下IsTest=2 的用户支付金额会改为 0.01 元
/// </summary>
public bool IsTestEnvironment { get; set; } = false;
}