AmagnoVirtualPrinter/Common/VirtualPrinter.Agent.Core/Interfaces/IJobInfo.cs
2020-10-19 17:44:50 +02:00

15 lines
No EOL
377 B
C#

using System.Printing;
namespace VirtualPrinter.Agent.Core
{
public interface IJobInfo
{
int JobId { get; set; }
string Name { get; set; }
string DomainName { get; set; }
string MachineName { get; set; }
string UserName { get; set; }
PrintJobStatus Status { get; set; }
string DeviceName { get; set; }
}
}