I want to create and return an object in this return call:
var Zones = _ZoneService.GetZones();
var userZones = _ZoneService.GetUserZones(user);
return Ok(//Here I need to return both Zones and userZones);
How can I create new on the go object to return these two. Thanks...