// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team // This code is distributed under MIT license (for details please see \doc\license.txt) using System; using System.Diagnostics; using System.IO; using System.Linq; using System.Windows.Controls; namespace ICSharpCode.ILSpy.Debugger.Models { sealed class RunningProcess { public int ProcessId { get; set; } public string WindowTitle { get; set; } public string ProcessName { get; set; } public string FileName { get; set; } public string Managed { get; set; } public Process Process { get; set; } } }