using Microsoft.EntityFrameworkCore;
namespace Lookup.Database;
///
/// Common interface for variants
/// which reference instances
///
public interface IKeyEntity : IEntity
where TKey : class, IKeyEntity
where TValue : class, IValueEntity
{
///
/// The referenced instances
///
DbSet> Values { get; }
}