You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/Infrastructure/Domain/ManyToManyAttribute.cs

13 lines
266 B

using System;
namespace Infrastructure.Domain
{
/// <summary>
/// 关联实体,只有新建和删除操作,无修改操作
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class ManyToManyAttribute : Attribute
{
}
}