Files

20 lines
440 B
C#
Raw Permalink Normal View History

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;
}
}