|
|
|
@ -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"/> |
|
|
|
|