|
|
|
@ -2,12 +2,14 @@ |
|
|
|
// Created: 2020-01-24 |
|
|
|
// Created: 2020-01-24 |
|
|
|
// Copyright(c) 2020 SimonG. All Rights Reserved. |
|
|
|
// Copyright(c) 2020 SimonG. All Rights Reserved. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using System; |
|
|
|
|
|
|
|
|
|
|
|
namespace GBase.Interfaces |
|
|
|
namespace GBase.Interfaces |
|
|
|
{ |
|
|
|
{ |
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
/// An entry of a <see cref="IGBaseTable"/> |
|
|
|
/// An entry of a <see cref="IGBaseTable"/> |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
public interface IGBaseEntry //TODO: Make entry generic (generic type is type of the value of the entry?) |
|
|
|
public interface IGBaseEntry : IAsyncDisposable //TODO: Make entry generic (generic type is type of the value of the entry?) |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|