namespace EllieBot.Common.Configs; /// /// Base interface for available config serializers /// public interface IConfigSeria { /// /// Serialize the object to string /// public string Serialize(T obj) where T : notnull; /// /// Deserialize string data into an object of the specified type /// public T Deserialize(string data); }