Blame Rider for it that always works.

This commit is contained in:
Pieter-Jan Briers
2021-02-08 22:52:52 +01:00
parent c4fe0c904c
commit c8ca4f3fbc

View File

@@ -13,11 +13,11 @@ namespace Content.Shared.Prototypes.Tag
/// gets saved in TagComponent.
/// </summary>
[Prototype("Tag")]
public class TagPrototype : IPrototype, IIndexedPrototype, IExposeData
public class TagPrototype : IPrototype, IIndexedPrototype
{
public string ID { get; [UsedImplicitly] private set; } = default!;
void IExposeData.ExposeData(ObjectSerializer serializer)
private void ExposeData(ObjectSerializer serializer)
{
serializer.DataField(this, x => x.ID, "id", "");
}