Files
Print_server/Inspectron.Epson/Queue/PrintJob.cs
2026-01-16 12:00:24 +01:00

16 lines
406 B
C#

using static Inspectron.Epson.PrintServer.JobSources.SignalRPrintJobSource;
public class PrintJob
{
// todo: change to ip address
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;
}
}