using System.Text.Json; namespace Milimoe.FunGame.Core.Interface.Base { internal interface IEntityConverter { public void ReadPropertyName(ref Utf8JsonReader reader, string propertyName, ref T? result); } }