10 lines
259 B
C#
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; }
|
|
} |