Files
eveo/Eve-O-Preview/Services/Interface/IProcessInfo.cs
2018-02-08 22:23:51 +02:00

10 lines
147 B
C#

using System;
namespace EveOPreview.Services
{
public interface IProcessInfo
{
IntPtr Handle { get; }
string Title { get; }
}
}