초기 커밋.

This commit is contained in:
chainsecure
2026-05-28 14:48:48 +09:00
parent 377498fae8
commit 5d6ee943f6
31 changed files with 3182 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ControlServer
{
public class TerminalInfo
{
public string TerminalName { get; set; } = "";
public string IP { get; set; } = "";
public string Port { get; set; } = "";
public string Mac { get; set; } = "";
public string Path { get; set; } = "";
public string ProcessName { get; set; } = "";
}
}