Files
nadekobot/src/NadekoBot/Common/Configs/IConfigSeria.cs
2021-12-29 06:07:16 +01:00

18 lines
453 B
C#

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