isn/src/isnd/Controllers/Resource.cs

17 lines
No EOL
312 B
C#

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