mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
* Fix missing Attribute suffix from some serialization attributes * Rename DataDefinition namespace to Definition
13 lines
309 B
C#
13 lines
309 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = false)]
|
|
[MeansDataDefinition]
|
|
[MeansImplicitUse]
|
|
public class DataDefinitionAttribute : Attribute
|
|
{
|
|
}
|
|
}
|