mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-07 02:08:17 +02:00
17 lines
458 B
C#
17 lines
458 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
/// <summary>
|
|
/// Makes all properties in a record data fields with camel case naming.
|
|
/// <seealso cref="DataFieldAttribute"/>
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = false)]
|
|
[MeansDataDefinition]
|
|
[MeansDataRecord]
|
|
[MeansImplicitUse]
|
|
public sealed class DataRecordAttribute : Attribute
|
|
{
|
|
}
|