This code generated by service stack add reference does not compile (note the line break in the api attribute)
///<summary>
///Back Office Operation. Add an Availability HelperIn the Auth Token there must be a backoffice scope
///</summary>
[Route("/availabilityHelpers", "POST")]
[Api("Back Office Operation. Add an Availability Helper
In the Auth Token there must be a backoffice scope")]
on the server side i had written
[Api("Back Office Operation. Add an Availability Helper /n In the Auth Token there must be a backoffice scope")]
on the client side it should probably be something like
///<summary>
///Back Office Operation. Add an Availability HelperIn the Auth Token there must be a backoffice scope
///</summary>
[Route("/availabilityHelpers", "POST")]
[Api(@"Back Office Operation. Add an Availability Helper
In the Auth Token there must be a backoffice scope")]
thank you
enrico