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

19 lines
321 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",
" {",
" public ${2:string} ${3:Name} { get; set; }",
"",
" $4",
" }",
"}"
],
"description": "Creates a new model"
}
}