templates support

This commit is contained in:
EugeneTes
2026-01-21 15:56:37 +01:00
parent 729679d283
commit 9fbc61dede
60 changed files with 5678 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
namespace Inspectron.Epson.Templates.Configuration;
public record PrinterProfile(
string Id,
string Name,
int LineWidth,
int BigLineWidth,
bool SupportsRed)
{
public static PrinterProfile Default { get; } = new(
Id: "default",
Name: "Default Printer",
LineWidth: 48,
BigLineWidth: 24,
SupportsRed: false);
}