12 lines
457 B
C#
12 lines
457 B
C#
namespace ScadaLink.Commons.Messages.Integration;
|
|
|
|
/// <summary>
|
|
/// Audit Log (#23) periodic reconciliation pull request: central asks a site for
|
|
/// audit events since the given UTC watermark, up to <paramref name="BatchSize"/>.
|
|
/// Acts as the fallback when streaming telemetry is lost. See Component-AuditLog.md "Ingestion".
|
|
/// </summary>
|
|
public sealed record PullAuditEventsRequest(
|
|
string SourceSiteId,
|
|
DateTime SinceUtc,
|
|
int BatchSize);
|