From 5f0c11d39bfc773ce8fde1ea47818769f51e72e1 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Fri, 24 Jan 2020 16:22:09 +0100 Subject: [PATCH] - add gBaseTable attribute --- GBase/Attributes/GBaseTableAttribute.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 GBase/Attributes/GBaseTableAttribute.cs diff --git a/GBase/Attributes/GBaseTableAttribute.cs b/GBase/Attributes/GBaseTableAttribute.cs new file mode 100644 index 0000000..df5be30 --- /dev/null +++ b/GBase/Attributes/GBaseTableAttribute.cs @@ -0,0 +1,18 @@ +// Author: Gockner, Simon +// Created: 2020-01-24 +// Copyright(c) 2020 SimonG. All Rights Reserved. + +using System; +using GBase.Interfaces; + +namespace GBase.Attributes +{ + /// + /// Tags a class as a + /// + [AttributeUsage(AttributeTargets.Class)] + public class GBaseTableAttribute : Attribute //TODO: Decide how to handle enums (as table or their own type) + { + + } +} \ No newline at end of file