6 lines
95 B
C#
6 lines
95 B
C#
namespace Lookup.Interface;
|
|
|
|
public interface IKey<TKey>
|
|
{
|
|
public TKey Key { get; set; }
|
|
} |