16 lines
304 B
C#
16 lines
304 B
C#
using System;
|
|
|
|
namespace WaterCloud.DataBase
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class IgnoreInitTableAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 种子数据忽略修改
|
|
/// </summary>
|
|
public class IgnoreSeedDataUpdateAttribute : Attribute
|
|
{
|
|
}
|
|
} |