DeviceManager/DeviceRepair.Models/DefaultConstValue.cs

12 lines
253 B
C#
Raw Normal View History

2024-06-05 17:09:59 +00:00
namespace DeviceRepair.Models
{
public static class DefaultConstValue
{
/// <summary>
/// 重置用户时用的默认密码
/// </summary>
public const string USER_DEFAULT_PASSWORD_RESET = "Kanghui1";
}
}