From fababa96d796621a91f75e24754cbf0881ae9aca Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 13 Nov 2020 13:19:03 +0100 Subject: [PATCH] - add type to interface as well --- GBase/Interfaces/IGBaseColumn.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GBase/Interfaces/IGBaseColumn.cs b/GBase/Interfaces/IGBaseColumn.cs index 59cd728..0292153 100644 --- a/GBase/Interfaces/IGBaseColumn.cs +++ b/GBase/Interfaces/IGBaseColumn.cs @@ -12,5 +12,6 @@ namespace GBase.Interfaces public interface IGBaseColumn : IAsyncDisposable //TODO: Make column generic (generic type is type of the value of the column?)? { string Name { get; } + Type Type { get; } } } \ No newline at end of file