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

9 lines
124 B
C#

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