namespace Engine.Serialization; public interface ISerializer { public string Serialize(T @object); public T Deserialize(string serializedString); }