DeviceManager/DeviceRepair.Models/DefaultConstValue.cs
2024-06-06 01:09:59 +08:00

12 lines
253 B
C#

namespace DeviceRepair.Models
{
public static class DefaultConstValue
{
/// <summary>
/// 重置用户时用的默认密码
/// </summary>
public const string USER_DEFAULT_PASSWORD_RESET = "Kanghui1";
}
}