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