Files
SourceCode/PROMS/DropDownPanel_sol/DropDownPanel/Interfaces/ILookupItem.cs

11 lines
139 B
C#

using System;
namespace AT.STO.UI.Win
{
public interface ILookupItem<T> where T: struct
{
T Id { get; }
string Text { get; }
}
}