This commit is contained in:
Paul Schneider 2022-04-09 19:53:26 +01:00
commit 1befc2e053
38 changed files with 427 additions and 309 deletions

View file

@ -0,0 +1,13 @@
using Newtonsoft.Json;
namespace isn.Abstract
{
public class ApiIndexViewModel
{
[JsonProperty("version")]
public string Version { get; set; }
[JsonProperty("resources")]
public Resource[] Resources { get; set; }
}
}