fish-station/Content.Server/_Sunrise/GuideGenerator/MixingCategoryEntry.cs
Vigers Ray 5775d4cdef
Merge sunrise build (#2)
* commit
2024-05-31 02:16:18 +03:00

19 lines
442 B
C#

using System.Text.Json.Serialization;
using Content.Shared.Chemistry.Reaction;
namespace Content.Server._Sunrise.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;
}
}