initial commit

This commit is contained in:
backuppc
2025-07-07 17:05:06 +09:00
commit 5a0ff2e3ad
22 changed files with 1599 additions and 0 deletions

14
Models/VNCServer.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
namespace VNCServerList.Models
{
public class VNCServer
{
public string User { get; set; }
public string IP { get; set; }
public string Category { get; set; }
public string Description { get; set; }
public string Password { get; set; }
public string Argument { get; set; }
}
}