- add entries list to table

pull/26/head
Simon Gockner 6 years ago
parent ecc225e361
commit 8f760e092a
  1. 5
      GBase/Interfaces/IGBaseTable.cs

@ -3,6 +3,7 @@
// Copyright(c) 2020 SimonG. All Rights Reserved. // Copyright(c) 2020 SimonG. All Rights Reserved.
using System; using System;
using System.Collections.Generic;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -18,6 +19,10 @@ namespace GBase.Interfaces
/// </summary> /// </summary>
string Name { get; } string Name { get; }
/// <summary>
/// The <see cref="IGBaseEntry"/>s of this <see cref="IGBaseTable"/>
/// </summary>
List<IGBaseEntry> Entries { get; }
/// <summary> /// <summary>
/// Initialize this <see cref="IGBase"/> /// Initialize this <see cref="IGBase"/>

Loading…
Cancel
Save