Files
mRemoteNG/mRemoteV1/UI/Controls/ISelectionTarget.cs

11 lines
207 B
C#

using System.Drawing;
namespace mRemoteNG.UI.Controls
{
public interface ISelectionTarget<out T>
{
string Text { get; set; }
Image Image { get; }
T Config { get; }
}
}