Files
windowsService/config/CloudPrintOptions.cs

10 lines
361 B
C#
Raw Normal View History

2026-04-12 15:41:48 +08:00
namespace cloudPrintWinAgent
{
public sealed class CloudPrintOptions
{
public string ServerAddress { get; set; } = "http://127.0.0.1:8080";
public string PrinterName { get; set; } = "win-printer-001";
public string PrinterDisplayName { get; set; } = "Windows Printer 001";
public string ApiKey { get; set; } = "";
}
}