Files
VNCServerList/Models/AppSettings.cs
backuppc d537030eb3 ..
2025-07-07 17:44:59 +09:00

10 lines
242 B
C#

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;
}
}