Skip to content

Instantly share code, notes, and snippets.

@Layoric
Created December 5, 2015 04:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Layoric/f9cc09d3fe2860dba3ca to your computer and use it in GitHub Desktop.
Save Layoric/f9cc09d3fe2860dba3ca to your computer and use it in GitHub Desktop.
ServiceStack Model routes example
[Route("/hello/{Name}")]
public class Hello : IReturn<HelloResponse>
{
public string Name { get; set; }
}
public class HelloResponse
{
public string Result { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment