This commit is contained in:
backuppc
2025-07-07 17:44:59 +09:00
parent 5a0ff2e3ad
commit d537030eb3
10 changed files with 435 additions and 24 deletions

10
Models/AppSettings.cs Normal file
View File

@@ -0,0 +1,10 @@
using System;
namespace VNCServerList.Models
{
public class AppSettings
{
public string VNCViewerPath { get; set; } = @"C:\Program Files\TightVNC\tvnviewer.exe";
public int WebServerPort { get; set; } = 8080;
}
}