mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
12 lines
310 B
C#
12 lines
310 B
C#
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
namespace Robust.Benchmarks.Serialization.Definitions
|
|
{
|
|
[DataDefinition]
|
|
public sealed partial class SealedDataDefinitionWithString
|
|
{
|
|
[DataField("string")]
|
|
public string StringField { get; private set; } = default!;
|
|
}
|
|
}
|