isn/src/isnd/Controllers/Resource.cs

17 lines
312 B
C#
Raw Normal View History

2021-09-08 01:55:00 +01:00
using Newtonsoft.Json;
2021-08-15 19:09:01 +01:00
namespace isnd.Controllers
2021-06-22 23:03:38 +01:00
{
2021-08-23 03:21:08 +01:00
public class Resource
2021-06-22 23:03:38 +01:00
{
2021-09-08 01:55:00 +01:00
[JsonProperty("@id")]
public string Id {get; set; }
[JsonProperty("@type")]
public string Type {get; set; }
[JsonProperty("comment")]
public string Comment {get; set; }
2021-06-22 23:03:38 +01:00
}
}