sharp-oodb/attributes/ReferencedFieldAttribute.cs

14 lines
273 B
C#

using System;
namespace oodb.attributes
{
public class ReferencedFieldAttribute : Attribute
{
public String FieldName { get; }
public ReferencedFieldAttribute(String FieldName)
{
this.FieldName = FieldName;
}
}
}