kitchen receipt + html printer
This commit is contained in:
16
Inspectron.Epson/PrintServer/Printers/Utils/PrintCommand.cs
Normal file
16
Inspectron.Epson/PrintServer/Printers/Utils/PrintCommand.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Inspectron.Epson.PrintServer.Printers.Utils;
|
||||
|
||||
public class PrintCommand
|
||||
{
|
||||
public string Text { get; set; }
|
||||
public bool IsBig { get; set; }
|
||||
public bool IsBold { get; set; }
|
||||
public bool IsRed { get; set; }
|
||||
|
||||
public PrintCommand(string text, bool isBig = false, bool isBold = false)
|
||||
{
|
||||
Text = text;
|
||||
IsBig = isBig;
|
||||
IsBold = isBold;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user