10 lines
361 B
C#
10 lines
361 B
C#
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; } = "";
|
|
}
|
|
} |