Files
OldThink/Content.Server/_White/GuideGenerator/MixingCategoryEntry.cs
Valtos a5cddf1223 json generator alternator and vibrator (#718)
* json generator alternator and vibrator

* каким хуем ты не закоммитился уебан
2024-09-29 01:15:33 +03:00

20 lines
440 B
C#

using Content.Shared.Chemistry.Reaction;
using System.Text.Json.Serialization;
namespace Content.Server._White.GuideGenerator;
public sealed class MixingCategoryEntry
{
[JsonPropertyName("name")]
public string Name { get; }
[JsonPropertyName("id")]
public string Id { get; }
public MixingCategoryEntry(MixingCategoryPrototype proto)
{
Name = Loc.GetString(proto.VerbText);
Id = proto.ID;
}
}