I would like to use a 3rd party library with its own JSON serialization to handle certain bits of my object models. The JSON.Net JsonConverter attribute works, but I don't have a clean way to add it. I was able to add my converter into the
JsonSerializerSettings in Couchbase.Lite.
NewtonsoftJsonSerializer but I suspect folks don't want to allow the class and property to be made public so clients can see/access it. Looking for alternatives on the approach that would work and meet the design goals of the library.
Thanks,
Dylan