22 lines
440 B
C#
22 lines
440 B
C#
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; } = "";
|
|
}
|
|
}
|