1
0
Fork 0
chezmoi/dot_config/nvim/snippets/cs.snippets
2023-02-01 17:11:15 +01:00

9 lines
285 B
Text

snippet ctrhandl
[Http${1:Post}]
[OpenApiOperation("${2}", "${3}", "")]
public async Task<${4:${2}Response}> ${5:$2}(
${6:${2}Request} request)
{
return await _vizitPhpRpcProducerService
.SendAsync<${6}Request, ${4}Response>(request);
}