chomp
6e4c7abf73
Co-authored-by: Alex <alex@dm-me-for-questions.com> Reviewed-on: SPT-AKI/LootDumpProcessor#6
7 lines
141 B
C#
7 lines
141 B
C#
namespace LootDumpProcessor.Serializers;
|
|
|
|
public interface ISerializer
|
|
{
|
|
string Serialize<T>(T obj);
|
|
T? Deserialize<T>(string obj);
|
|
} |