isn/src/isn.abst/ApiIndexViewModel.cs
2022-04-09 19:53:26 +01:00

13 lines
No EOL
282 B
C#

using Newtonsoft.Json;
namespace isn.Abstract
{
public class ApiIndexViewModel
{
[JsonProperty("version")]
public string Version { get; set; }
[JsonProperty("resources")]
public Resource[] Resources { get; set; }
}
}