mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
13 lines
288 B
C#
13 lines
288 B
C#
using System;
|
|
|
|
namespace GlitchyEngine.Serialization;
|
|
|
|
/// <summary>
|
|
/// Specifies that the field is to be serialized.
|
|
/// </summary>
|
|
/// <seealso cref="DontSerializeFieldAttribute"/>
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public sealed class SerializeFieldAttribute : Attribute
|
|
{
|
|
}
|