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