Move Process list manager into a separate class
This commit is contained in:
16
Eve-O-Preview/Services/Implementation/ProcessInfo.cs
Normal file
16
Eve-O-Preview/Services/Implementation/ProcessInfo.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace EveOPreview.Services.Implementation
|
||||
{
|
||||
sealed class ProcessInfo : IProcessInfo
|
||||
{
|
||||
public ProcessInfo(IntPtr handle, string title)
|
||||
{
|
||||
this.Handle = handle;
|
||||
this.Title = title;
|
||||
}
|
||||
|
||||
public IntPtr Handle { get; }
|
||||
public string Title { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user