This commit is contained in:
backuppc
2025-07-08 11:16:43 +09:00
parent d537030eb3
commit 8efe357430
11 changed files with 380 additions and 97 deletions

View File

@@ -4,7 +4,9 @@ namespace VNCServerList.Models
{
public class AppSettings
{
public string UserName { get; set; } = "";
public string VNCViewerPath { get; set; } = @"C:\Program Files\TightVNC\tvnviewer.exe";
public int WebServerPort { get; set; } = 8080;
public string Argument { get; set; } = "-useclipboard=no -scale=auto -showcontrols=yes";
}
}

View File

@@ -7,6 +7,7 @@ namespace VNCServerList.Models
public string User { get; set; }
public string IP { get; set; }
public string Category { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Password { get; set; }
public string Argument { get; set; }