16 lines
394 B
C#
16 lines
394 B
C#
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;
|
|
}
|
|
} |