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