LMS.service/LMS.Repository/Options/ResetUserFreeCountSettingModel.cs

10 lines
215 B
C#
Raw Permalink Normal View History

namespace LMS.Repository.Options
{
public class ResetUserFreeCountSettingModel
{
public bool EnableMonthlyReset { get; set; } = false;
public int OnceFreeCount { get; set; } = 5;
}
}