AmagnoVirtualPrinter/Common/AmagnoVirtualPrinter.Agent.Core/Interfaces/IJobInfo.cs
2021-01-22 10:55:33 +01:00

15 lines
No EOL
394 B
C#

using System.Printing;
namespace AmagnoVirtualPrinter.Agent.Core.Interfaces
{
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; }
}
}