18 lines
445 B
C#
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;
|
|
}
|
|
} |