10 lines
147 B
C#
10 lines
147 B
C#
using System;
|
|
|
|
namespace EveOPreview.Services
|
|
{
|
|
public interface IProcessInfo
|
|
{
|
|
IntPtr Handle { get; }
|
|
string Title { get; }
|
|
}
|
|
} |