16 lines
437 B
C#
16 lines
437 B
C#
using Inspectron.Epson.PrintServer.PrintServices;
|
|
|
|
namespace Inspectron.Epson.PrintServer.ConfigurationSources;
|
|
|
|
public class FixedConfigurationSource: IPrinterConfigurationSource
|
|
{
|
|
public PrinterConfiguration GetConfiguration(string printerAddress)
|
|
{
|
|
return new PrinterConfiguration()
|
|
{
|
|
Address = "127.0.0.1:8888",
|
|
FontSize = 1,
|
|
LogoFilename = "test.png"
|
|
};
|
|
}
|
|
} |