using static Inspectron.Epson.PrintServer.JobSources.SignalRPrintJobSource; namespace Inspectron.Epson.Queue; public class PrintJob { public string JobId { get; set; } public string IP { get; set; } public PrintJobFromSignalR Document { get; set; } public DateTime QueuedAt { get; set; } public int RetryCount { get; set; } public PrintJob() { QueuedAt = DateTime.UtcNow; RetryCount = 0; } }