10 lines
296 B
C#
10 lines
296 B
C#
|
|
using CloudPrint.Client.Models;
|
||
|
|
|
||
|
|
namespace CloudPrint.Client.Services.Printing;
|
||
|
|
|
||
|
|
public sealed class PrinterStatusSnapshot
|
||
|
|
{
|
||
|
|
public PrinterStatus Status { get; init; } = PrinterStatus.Unknown;
|
||
|
|
public int QueueCount { get; init; }
|
||
|
|
public string Message { get; init; } = string.Empty;
|
||
|
|
}
|