uhnit testing from vscode

This commit is contained in:
Paul Schneider 2021-09-08 01:55:00 +01:00
commit f33ca22255
10 changed files with 64 additions and 52 deletions

View file

@ -1,10 +1,17 @@
using Newtonsoft.Json;
namespace isnd.Controllers
{
public class Resource
{
public string id {get; set; }
public string type {get; set; }
public string comment {get; set; }
[JsonProperty("@id")]
public string Id {get; set; }
[JsonProperty("@type")]
public string Type {get; set; }
[JsonProperty("comment")]
public string Comment {get; set; }
}
}