Add project files.

This commit is contained in:
2024-04-16 23:39:52 +02:00
parent 7ccde390bd
commit 901b26153e
28 changed files with 1321 additions and 0 deletions

14
Config/SyncOptions.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace ConnectionsAPI.Config
{
public class SyncOptions
{
/// <summary>
/// The cron expression for the sync schedule
/// </summary>
public string? ScheduleCron { get; set; }
/// <summary>
/// If the sync should run immediately or wait until the next cron occurrence
/// </summary>
public bool? RunImmediately { get; set; }
}
}