mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-04 11:07:12 +02:00
12 lines
290 B
C#
12 lines
290 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = false)]
|
|
[MeansDataDefinition]
|
|
[MeansImplicitUse]
|
|
public sealed class DataDefinitionAttribute : Attribute
|
|
{
|
|
}
|