10 lines
221 B
C#
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;
|
|
}
|