From 712b073c2d23b3e89df155acbc68bdac3eadea7c Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Thu, 13 Feb 2020 10:02:09 +0100 Subject: [PATCH] - add table file extension as const --- GBase/GBase.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/GBase/GBase.cs b/GBase/GBase.cs index 10b6879..e665d65 100644 --- a/GBase/GBase.cs +++ b/GBase/GBase.cs @@ -16,6 +16,11 @@ namespace GBase /// public class GBase : IGBase { + /// + /// The file extension for all GBase tables + /// + public const string GBASE_TABLE_FILE_EXTENSION = "gb"; //TODO: Find correct place for this const + /// /// The base class of the GBase database ///