Initial commit to new repository
This commit is contained in:
24
.decompiledproj/AxCopilot/Services/TriggerRule.cs
Normal file
24
.decompiledproj/AxCopilot/Services/TriggerRule.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
|
||||
namespace AxCopilot.Services;
|
||||
|
||||
public class TriggerRule
|
||||
{
|
||||
public string Name { get; set; } = "";
|
||||
|
||||
public string Type { get; set; } = "file_change";
|
||||
|
||||
public string Prompt { get; set; } = "";
|
||||
|
||||
public string? Pattern { get; set; }
|
||||
|
||||
public int? IntervalMinutes { get; set; }
|
||||
|
||||
public int? ActiveHourStart { get; set; }
|
||||
|
||||
public int? ActiveHourEnd { get; set; }
|
||||
|
||||
public bool Enabled { get; set; } = true;
|
||||
|
||||
public DateTime? LastRun { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user