using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Assets.Sources.Core.Infrastructure { public interface ISerializer { string Serialize(T obj, bool readableOutput = false) where T : class, new(); T Deserialize(string json) where T : class, new(); } }