10 lines
225 B
C#
10 lines
225 B
C#
namespace ScrapperAPI.Records;
|
|
|
|
public sealed record ScrapeRuntimeStatus(
|
|
int SessionId,
|
|
bool IsRunning,
|
|
bool StopRequested,
|
|
int? CurrentQueueId,
|
|
string? CurrentUrl,
|
|
DateTimeOffset? CurrentStartedAt
|
|
); |