Initial commit

Initial commit til Git.
V2 er deployed
This commit is contained in:
2026-06-13 17:31:50 +02:00
parent 9fcd2b145e
commit 41e23b6184
375 changed files with 15956 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
using System;
namespace ESCPOS_NET
{
public class PrinterStatusEventArgs : EventArgs
{
public bool? IsWaitingForOnlineRecovery { get; set; }
public bool? IsPaperCurrentlyFeeding { get; set; }
public bool? IsPaperFeedButtonPushed { get; set; }
public bool? IsPrinterOnline { get; set; }
public bool? IsCashDrawerOpen { get; set; }
public bool? IsCoverOpen { get; set; }
public bool? IsPaperLow { get; set; }
public bool? IsPaperOut { get; set; }
public bool? IsInErrorState => (DidRecoverableErrorOccur ?? false) || (DidUnrecoverableErrorOccur ?? false) || (DidAutocutterErrorOccur ?? false) || (DidRecoverableNonAutocutterErrorOccur ?? false);
public bool? DidRecoverableErrorOccur { get; set; }
public bool? DidUnrecoverableErrorOccur { get; set; }
public bool? DidAutocutterErrorOccur { get; set; }
public bool? DidRecoverableNonAutocutterErrorOccur { get; set; }
}
}