18 lines
334 B
C#
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; }
|
|
|
|
}
|
|
} |