(client) feat:定义存档标记相关属性

This commit is contained in:
m0_75251201
2025-07-16 11:25:56 +08:00
parent ac621cdd73
commit 255642fb36
4 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,13 @@
using System;
namespace Base
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class NeedSaveAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
public class UnSaveAttribute : Attribute
{
}
}