BITKit/Packages/Core/Attributes/PersistentData.cs

12 lines
259 B
C#
Raw Normal View History

2023-06-05 19:57:17 +08:00
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 { }
}