Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Last active June 30, 2021 07:13
Show Gist options
  • Save gistlyn/fde5f30d249bd45b3825a8a4d1c353e1 to your computer and use it in GitHub Desktop.
Save gistlyn/fde5f30d249bd45b3825a8a4d1c353e1 to your computer and use it in GitHub Desktop.
project-overview
[Route("/hello/{Name}")]
public class Hello : IReturn<HelloResponse>
{
public string Name { get; set; }
}
public class HelloResponse
{
public string Result { get; set; }
}
public class MyServices : Service
{
public object Any(Hello request) =>
new HelloResponse {
Result = $"Hello, {request.Name}!"
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment