9 lines
124 B
C#
9 lines
124 B
C#
namespace AT.STO.UI.Win
|
|
{
|
|
public interface ILookupItem<T> where T: struct
|
|
{
|
|
T Id { get; }
|
|
string Text { get; }
|
|
}
|
|
}
|