16 lines
406 B
C#
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;
|
|
}
|
|
} |