8 lines
143 B
C#
8 lines
143 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Lookup.Interface;
|
|
|
|
public interface IRelated<TKey>
|
|
{
|
|
public ICollection<TKey> Keys { get; }
|
|
} |