Files
VNCServerList/Models/AppSettings.cs
backuppc 8efe357430 ..
2025-07-08 11:16:43 +09:00

12 lines
390 B
C#

using System;
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";
}
}