mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 11:40:52 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
14 lines
327 B
C#
14 lines
327 B
C#
using Robust.Shared.Analyzers;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
namespace Robust.Benchmarks.Serialization.Definitions
|
|
{
|
|
[DataDefinition]
|
|
[Virtual]
|
|
public class DataDefinitionWithString
|
|
{
|
|
[DataField("string")]
|
|
public string StringField { get; init; } = default!;
|
|
}
|
|
}
|