feat(configmanager): add configuration models

This commit is contained in:
Joseph Doherty
2026-01-19 17:36:10 -05:00
parent 0e1bb6aa35
commit 4335286560
3 changed files with 147 additions and 0 deletions
@@ -0,0 +1,12 @@
namespace JdeScoping.ConfigManager.Models;
/// <summary>
/// Model for schedule configuration.
/// </summary>
public class ScheduleModel
{
public bool Enabled { get; set; } = true;
public int IntervalMinutes { get; set; } = 60;
public bool PrePurge { get; set; } = false;
public bool ReIndex { get; set; } = false;
}