public void SerializeWithBinaryData()
 {
     using var ms     = new MemoryStream();
     using var writer = new Utf8JsonWriter(ms);
     _modelWithBinaryData.Write(writer);
 }