Files
isn/src/isn.abst/Resource.cs
2023-04-25 22:40:58 +01:00

18 lines
334 B
C#

using isnd.Data.Catalog;
using Newtonsoft.Json;
namespace isn.Abstract
{
public class Resource : Permalink
{
public Resource(string id, string typename) : base(id)
{
Type = typename;
}
[JsonProperty("comment")]
public string Comment {get; set; }
}
}