(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
{
}
}

View File

@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: bb4eb0442fc54e27955bb860d6dc2fd3
timeCreated: 1752635644

View File

@ -0,0 +1,10 @@
namespace Managers
{
public class ArchiveManager
{
public bool Save(string filename)
{
return false;
}
}
}

View File

@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: a6952f5a135a4809bdeb721b4761aa6f
timeCreated: 1752635779