Add project files.
This commit is contained in:
14
Inspectron.Epson/Queue/PrintJob.cs
Normal file
14
Inspectron.Epson/Queue/PrintJob.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
public class PrintJob
|
||||
{
|
||||
public string AreaId { get; set; }
|
||||
public string Document { get; set; }
|
||||
public DateTime QueuedAt { get; set; }
|
||||
public int RetryCount { get; set; }
|
||||
|
||||
public PrintJob()
|
||||
{
|
||||
AreaId = Guid.NewGuid().ToString();
|
||||
QueuedAt = DateTime.UtcNow;
|
||||
RetryCount = 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user