isn/src/isnd/Controllers/Resource.cs

10 lines
190 B
C#
Raw Normal View History

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
{
public string id {get; set; }
public string type {get; set; }
public string comment {get; set; }
}
}