Files
BITKit/Core/Attributes/PersistentData.cs
CortexCore 4565ff2e35 1
2023-06-05 16:25:06 +08:00

12 lines
259 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security;
using System.Text;
using System.Threading.Tasks;
namespace BITKit
{
[AttributeUsage(AttributeTargets.Field)]
public class SaveDataAttribute : Attribute { }
}