using StellaOps.Findings.Ledger.Domain;
namespace StellaOps.Findings.Ledger.Services;
///
/// Service for audit timeline retrieval.
///
public interface IAuditService
{
///
/// Gets the audit timeline for an alert.
///
Task GetTimelineAsync(
string tenantId,
string alertId,
CancellationToken cancellationToken = default);
}