8 lines
190 B
C#
8 lines
190 B
C#
namespace ESCPOS_NET
|
|
{
|
|
public class PrinterOptions
|
|
{
|
|
int IdleTimeoutSeconds { get; set; } = 60;
|
|
int StatusPollingIntervalMilliseconds { get; set; } = 500;
|
|
}
|
|
} |