feat(configmanager): add configuration models
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user