Files
Print_server/Inspectron.Epson.Templates/Configuration/PrinterProfile.cs
2026-01-21 15:56:37 +01:00

17 lines
373 B
C#

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);
}