https://github.com/dcyuksel/customjsonconverter
Custom Json Converter with System.Text.Json
https://github.com/dcyuksel/customjsonconverter
custom-json-serializer deserialization dotnet json serilization system-text-json
Last synced: about 2 months ago
JSON representation
Custom Json Converter with System.Text.Json
- Host: GitHub
- URL: https://github.com/dcyuksel/customjsonconverter
- Owner: dcyuksel
- License: mit
- Created: 2024-11-04T12:52:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-25T14:00:43.000Z (over 1 year ago)
- Last Synced: 2025-10-28T12:11:35.291Z (8 months ago)
- Topics: custom-json-serializer, deserialization, dotnet, json, serilization, system-text-json
- Language: C#
- Homepage: https://medium.com/@dnzcnyksl/custom-json-converters-in-net-bea3850d44c8
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CustomJsonConverter
Custom Json Converter with System.Text.Json
When working with JSON in .NET, we often serialize our models using the standard serializer. However, there are times when we need to customize the serialization to meet specific client requirements while keeping our models clean and simple. This is where custom JSON converters come in handy.