AipProcessInfomation.cs 328 B

123456789101112
  1. using System.Diagnostics;
  2. namespace AipGateway.AIP.Service.WindowsService
  3. {
  4. public class AipProcessInfomation
  5. {
  6. public string ProcessName { get; set; } = string.Empty;
  7. public DateTime CreateAt { get; set; }
  8. public int Port { get; set; }
  9. public Process? process { get; set; }
  10. }
  11. }