Files
SVSimServer/SVSim.Database/Services/Replay/IReplayHistoryReader.cs
2026-06-10 07:48:18 -04:00

8 lines
293 B
C#

namespace SVSim.Database.Services.Replay;
public interface IReplayHistoryReader
{
/// <summary>Newest-first by CreateTime. Caps at <paramref name="take"/> (default 50).</summary>
Task<IReadOnlyList<ReplayHistoryEntry>> GetRecentAsync(long viewerId, int take, CancellationToken ct);
}