using ScrapperAPI.Enums; namespace ScrapperAPI.Records; public sealed record ScrapeEvent( ScrapeEventType Type, int SessionId, DateTimeOffset At, int? QueueId = null, string? Url = null, int? StatusCode = null, string? Error = null, long? Total = null, long? Done = null, long? Pending = null, long? Processing = null, long? Failed = null, double? Percent = null );