Files
monde-usage-unity/Assets/FullSerializer/Source/fsPropertyAttribute.cs
2024-09-22 21:45:37 +02:00

29 lines
874 BLFS
C#

using System;
namespace FullSerializer {
/// <summary>
/// Explicitly mark a property to be serialized. This can also be used to
/// give the name that the property should use during serialization.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public sealed class fsPropertyAttribute : Attribute {
/// <summary>
/// The name of that the property will use in JSON serialization.
/// </summary>
public string Name;
/// <summary>
/// Use a custom converter for the given type. Specify the converter to
/// use using typeof.
/// </summary>
public Type Converter;
public fsPropertyAttribute()
: this(string.Empty) {
}
public fsPropertyAttribute(string name) {
Name = name;
}
}
}