Skip to content
Snippets Groups Projects
ChromeProcessInfo.cs 343 B
Newer Older
  • Learn to ignore specific revisions
  • using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.IO;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace AutoWebPerf
    {
        class ChromeProcessInfo
        {
            public DirectoryInfo ChromeUserDirectory { get; set; }
            public Process ChromeProcess { get; set; }
        }
    }