mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01: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!;
|
|
}
|
|
}
|