using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Tiobon.Core.OPS.Tool.OPS.Tool.Model { public class Server { /// /// /// public string ServerName { get; set; } /// /// /// public string Status { get; set; } /// /// /// public string IP { get; set; } /// /// /// public string ServerPort { get; set; } /// /// /// public string ServerPath { get; set; } } }