mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
11 lines
207 B
C#
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; }
|
|
}
|
|
} |