- add gBaseTable attribute

pull/26/head
Simon Gockner 6 years ago
parent b11fd1fef7
commit 5f0c11d39b
  1. 18
      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
{
/// <summary>
/// Tags a class as a <see cref="IGBaseTable"/>
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class GBaseTableAttribute : Attribute //TODO: Decide how to handle enums (as table or their own type)
{
}
}
Loading…
Cancel
Save