feat: 基础

This commit is contained in:
2026-04-12 15:41:48 +08:00
parent a886baebdd
commit 9bf0b5fe52
5 changed files with 219 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
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; } = "";
}
}