|
|
|
|
@ -12,7 +12,7 @@ namespace GBase.Interfaces |
|
|
|
|
/// <summary> |
|
|
|
|
/// A <see cref="IGBase"/> table |
|
|
|
|
/// </summary> |
|
|
|
|
public interface IGBaseTable : IAsyncDisposable |
|
|
|
|
public interface IGBaseTable : IAsyncDisposable //TODO: make generic? |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// The <see cref="System.Type"/> of the class that this <see cref="IGBaseTable"/> represents |
|
|
|
|
@ -29,6 +29,11 @@ namespace GBase.Interfaces |
|
|
|
|
/// </summary> |
|
|
|
|
List<IGBaseColumn> Columns { get; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// The entries of this <see cref="IGBaseTable"/> |
|
|
|
|
/// </summary> |
|
|
|
|
List<object> Entries { get; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Initialize this <see cref="IGBase"/> |
|
|
|
|
/// </summary> |
|
|
|
|
|