using System;
using System.Linq;
namespace FreeSql.DataAnnotations
{
public class NavigateAttribute : Attribute
{
///
/// 手工绑定 OneToMany、ManyToOne 导航关系
///
public string Bind { get; set; }
///
/// 手工绑定 ManyToMany 导航关系
///
public Type ManyToMany { get; set; }
public NavigateAttribute(string bind)
{
this.Bind = bind;
}
public NavigateAttribute()
{
}
}
}