Is it possible to make the fact that a class is `@...
# serialization
b
Is it possible to make the fact that a class is
@Serializable
internal
? I want to expose a class publicly, but I don't to provide access to its serializer
d
Yes, don't mark it as such and create an internal serializer class.
🙌 1