Easy to use
Inherit from one class, and you're ready to serialize anything.
// Inherit from SerializedScriptableObject to use Odin Serializer
// It's that simple!
public class MyScriptableObject : SerializedScriptableObject
{
public Dictionary<int, string> MyDictionary;
}