21 lines
331 B
C#
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;
|
|
}
|
|
}
|
|
}
|