init
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace Kreta.Framework.Entities.Associations
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
|
||||
public class AssociationAttribute : Attribute
|
||||
{
|
||||
public string AssociationName
|
||||
{
|
||||
get;
|
||||
private set;
|
||||
}
|
||||
|
||||
public AssociationAttribute(string associationName)
|
||||
{
|
||||
AssociationName = associationName;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user