This commit is contained in:
2008-03-03 15:21:15 +00:00
parent 63fd25601e
commit bf25814d5b
14 changed files with 1290 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace AT.STO.UI.Win
{
public interface ILookupItem<T> where T: struct
{
T Id { get; }
string Text { get; }
}
}