6 lines
141 B
C#
6 lines
141 B
C#
|
|
namespace CloudPrint.Client.Services.Printing;
|
||
|
|
|
||
|
|
public interface IPrinterStatusReader
|
||
|
|
{
|
||
|
|
PrinterStatusSnapshot Read(string printerName);
|
||
|
|
}
|