feat: 初始功能
This commit is contained in:
12
Services/Printing/WindowsPrintQueueJob.cs
Normal file
12
Services/Printing/WindowsPrintQueueJob.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace CloudPrint.Client.Services.Printing;
|
||||
|
||||
public sealed class WindowsPrintQueueJob
|
||||
{
|
||||
public int JobId { get; init; }
|
||||
public string PrinterName { get; init; } = string.Empty;
|
||||
public string DocumentName { get; init; } = string.Empty;
|
||||
public string Status { get; init; } = string.Empty;
|
||||
public int Position { get; init; }
|
||||
public int TotalPages { get; init; }
|
||||
public int PagesPrinted { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user