a better result

This commit is contained in:
2023-04-25 22:40:58 +01:00
parent 56e4b6c526
commit d3b96088ab
47 changed files with 268 additions and 238 deletions

View File

@ -3,19 +3,13 @@ using Newtonsoft.Json;
namespace isn.Abstract
{
public class Resource : HappyIdOwner
public class Resource : Permalink
{
public Resource(string id, string typename) : base(id)
{
Type = typename;
Id = id;
}
[JsonProperty("@id")]
public string Id {get; set; }
[JsonProperty("@type")]
public string Type {get; set; }
[JsonProperty("comment")]
public string Comment {get; set; }