16 lines
299 B
C#
16 lines
299 B
C#
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; }
|
|
}
|
|
} |