Files
Print_server/Inspectron.Epson/PrintServer/Printers/Utils/PrintCommand.cs
2026-01-26 14:29:37 +01:00

18 lines
517 B
C#

namespace Inspectron.Epson.PrintServer.Printers.Utils;
public class PrintCommand
{
public string Text { get; set; }
public bool IsBig { get; set; }
public bool IsTall { get; set; }
public bool IsBold { get; set; }
public bool IsRed { get; set; }
public int? SetLineSpacing { get; set; }=null;
public bool IsCut { get; set; }
public PrintCommand(string text, bool isBig = false, bool isBold = false)
{
Text = text;
IsBig = isBig;
IsBold = isBold;
}
}