16 lines
406 B
C#
16 lines
406 B
C#
using AICore.Context.Entry;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AICore.Context.Summary
|
|
{
|
|
public abstract class NavigationContextSummary<TEntry, TEntity> : BaseContextSummary where TEntry : NavigationContextEntry<TEntity>
|
|
{
|
|
public IEnumerable<TEntry> DataContext { get; set; }
|
|
|
|
protected NavigationContextSummary(IEnumerable<TEntry> dataContext)
|
|
{
|
|
DataContext = dataContext;
|
|
}
|
|
}
|
|
}
|