using System.Diagnostics; namespace AipGateway.AIP.Service.WindowsService { public class AipProcessInfomation { public string ProcessName { get; set; } = string.Empty; public DateTime CreateAt { get; set; } public int Port { get; set; } public Process? process { get; set; } } }