Spotify.NET/.vscode/csharp.code-snippets

19 lines
329 B
Plaintext
Raw Normal View History

2020-05-01 19:05:28 +01:00
{
"model": {
"scope": "csharp",
"prefix": "model",
"body": [
"namespace SpotifyAPI.Web",
"{",
" public class $1",
" {",
2020-05-07 12:48:31 +01:00
" public ${2:string} ${3:Name} { get; private set; }",
2020-05-01 19:05:28 +01:00
"",
" $4",
" }",
"}"
],
"description": "Creates a new model"
}
}