using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Tiobon.Core.OPS.Tool.OPS.Tool.Model { public class Docker { /// /// /// public string Container_id { get; set; } /// /// /// public string Name { get; set; } /// /// /// public string Status { get; set; } /// /// /// public string Image { get; set; } /// /// /// public string Createtime { get; set; } public string Starttime { get; set; } /// /// /// public string IP { get; set; } /// /// /// public string Ports { get; set; } } }