19 lines
447 B
C#
19 lines
447 B
C#
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;
|
|
}
|
|
}
|
|
}
|