CodeLiturgy.Dashboard/BlueWest.Api/Context/Extensions/DatabaseFundamentalsAttribu...

15 lines
367 B
C#

using System;
namespace BlueWest.WebApi.EF
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class DatabaseFundamentalsAttribute : Attribute
{
public Type DatabaseContextType;
public Type EntityType;
public DatabaseFundamentalsAttribute(Type databaseContextType, Type entityType) { }
}
}