Files

9 lines
397 B
C#

public sealed class ClinicalSyncOptions
{
public const string Section = "ClinicalSync";
public const string BatchReceivedOutboxTopic = "clinical.sync.batch_received";
public bool SuppressPagingForSyncedAlerts { get; init; } = true;
public string SyncExchange { get; init; } = "clinical.sync";
public string SyncBatchReceivedRoutingKey { get; init; } = "sync.batch_received";
}