Files
2026-03-04 10:03:45 +08:00

21 lines
331 B
C#

using System;
namespace Gaia.FullSerializer
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public sealed class fsPropertyAttribute : Attribute
{
public string Name;
public fsPropertyAttribute()
: this(string.Empty)
{
}
public fsPropertyAttribute(string name)
{
Name = name;
}
}
}