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