job status reporting

This commit is contained in:
EugeneTes
2026-02-03 10:52:27 +01:00
parent f660b5119c
commit d738699acc
7 changed files with 31 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
using System.Threading.Tasks;
public interface IJobStatusReporter
{
Task ReportStatusAsync(PrintJob job, PrintJobStatus status);
}