From b693b100e890d00a2fd06c04d5fd8d9a0fa0706b Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 13 Nov 2020 13:18:08 +0100 Subject: [PATCH] - add type of property --- GBase/GBaseColumn.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/GBase/GBaseColumn.cs b/GBase/GBaseColumn.cs index 25d2da2..fd8587e 100644 --- a/GBase/GBaseColumn.cs +++ b/GBase/GBaseColumn.cs @@ -16,12 +16,14 @@ namespace GBase /// /// A column of a /// - public GBaseColumn(string name) + public GBaseColumn(string name, Type type) { Name = name; + Type = type; } public string Name { get; } + public Type Type { get; } /// /// The method