1
0
voyager-api/ScrapperAPI/Dtos/QueueItem.cs

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
);