13 lines
249 B
C#
13 lines
249 B
C#
namespace ScrapperAPI.Dtos;
|
|
|
|
public sealed record QueueItem(
|
|
int Id,
|
|
int SessionId,
|
|
string Url,
|
|
short Status,
|
|
DateTime CreatedDate,
|
|
DateTime? StartedDate,
|
|
DateTime? FinishedDate,
|
|
int Attempts,
|
|
string? LastError
|
|
); |