using System;
namespace StellaOps.Provcache;
///
/// Information about the time window used in VeriKey.
///
public sealed record TimeWindowInfo
{
///
/// The time window bucket identifier.
///
public required string Bucket { get; init; }
///
/// Start of the time window (UTC).
///
public DateTimeOffset? StartsAt { get; init; }
///
/// End of the time window (UTC).
///
public DateTimeOffset? EndsAt { get; init; }
///
/// Duration of the time window.
///
public TimeSpan? Duration { get; init; }
}