Files
2026-02-04 11:39:14 +01:00

18 lines
445 B
C#

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