1
0
Fork 0
chezmoi/dot_config/nvim/snippets/cs.snippets
2023-03-03 16:19:27 +01:00

9 lines
270 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}, ${4}>(request);
}