12 lines
390 B
C#
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";
|
|
}
|
|
} |