using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model
|
{
|
public class node
|
{
|
public string id { get; set; }
|
public string type { get; set; }
|
public double x { get; set; }
|
public double y { get; set; }
|
public string properties { get; set; }
|
public nodeText text { get; set; }
|
}
|
|
public class nodeText: point
|
{
|
public string value { get; set; }
|
}
|
}
|