Files
GymLogAI/GymLogAI.Worker/WorkerOptions.cs
T
2026-04-19 13:12:04 +03:00

10 lines
221 B
C#

namespace GymLogAI.Worker;
public sealed record WorkerOptions
{
public const string SectionName = "Worker";
public int BatchSize { get; init; } = 20;
public int PollingIntervalSeconds { get; init; } = 10;
}