添加重置用户每月的免费换绑次数
优化项目结构
This commit is contained in:
2025-03-24 16:53:32 +08:00
parent a23984c9f5
commit a37c40a2ef
60 changed files with 235 additions and 93 deletions
@@ -0,0 +1,9 @@
namespace LMS.Repository.Options
{
public class ResetUserFreeCountSettingModel
{
public bool EnableMonthlyReset { get; set; } = false;
public int OnceFreeCount { get; set; } = 5;
}
}