mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 23:02:34 +02:00
14 lines
340 B
C#
14 lines
340 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
/// <summary>
|
|
/// <seealso cref="DataRecordAttribute"/>
|
|
/// </summary>
|
|
[BaseTypeRequired(typeof(Attribute))]
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public sealed class MeansDataRecordAttribute : Attribute
|
|
{
|
|
}
|