From a41d44b48551a5e12e6ce40662d032defd3cde33 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Fri, 24 Jan 2020 16:29:35 +0100 Subject: [PATCH] - add GBaseEntry attribute --- GBase/Attributes/GBaseEntryAttribute.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 GBase/Attributes/GBaseEntryAttribute.cs diff --git a/GBase/Attributes/GBaseEntryAttribute.cs b/GBase/Attributes/GBaseEntryAttribute.cs new file mode 100644 index 0000000..acbeb6a --- /dev/null +++ b/GBase/Attributes/GBaseEntryAttribute.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 property as an + /// + [AttributeUsage(AttributeTargets.Property)] + public class GBaseEntryAttribute : Attribute + { + + } +} \ No newline at end of file