Railz 85495af97f Added DbForeignObject for automatic resolving
Added Init() to initialise necessary classes
Changed structure and added a BaseAttribute
Fixed occuring errors to match new system
2019-04-10 22:40:36 +02:00

21 lines
399 B
C#

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
namespace eu.railduction.netcore.dll.Database_Attribute_System.Attributes
{
public class BaseAttribute : Attribute
{
public FieldInfo parentField;
public DbObject classAttribute;
public string _attributeName;
public BaseAttribute()
{
}
}
}