mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
13 lines
329 B
C#
13 lines
329 B
C#
using System;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
/// <summary>
|
|
/// Makes any inheritors data records.
|
|
/// <seealso cref="DataRecordAttribute"/>
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)]
|
|
public sealed class ImplicitDataRecordAttribute : Attribute
|
|
{
|
|
}
|