Files
Print_server/Inspectron.Epson/PrintServer/PrintServices/PrinterConfiguration.cs
2026-01-13 09:06:47 +01:00

10 lines
259 B
C#

namespace Inspectron.Epson.PrintServer.PrintServices;
public class PrinterConfiguration
{
public string? LogoFilename { get; set; }
public int FontSize { get; set; }
public string Address { get; set; }
public string AreaId { get; set; }
}