10 lines
242 B
C#
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;
|
|
}
|
|
} |