Files
point_of_sale/PointOfSale/Utilities/ESCPOS_NET/Printers/PrinterOptions.cs
Bjarne Pedersen 41e23b6184 Initial commit
Initial commit til Git.
V2 er deployed
2026-06-13 17:31:50 +02:00

8 lines
190 B
C#

namespace ESCPOS_NET
{
public class PrinterOptions
{
int IdleTimeoutSeconds { get; set; } = 60;
int StatusPollingIntervalMilliseconds { get; set; } = 500;
}
}