using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model
|
{
|
public class edge
|
{
|
public string id { get; set; }
|
public string type { get; set; }
|
public string sourceNodeId { get; set; }
|
public string targetNodeId { get; set; }
|
public point startPoint { get; set; }
|
public point endPoint { get; set; }
|
public string properties { get; set; }
|
public List<point> pointsList { get; set; }
|
}
|
|
public class point
|
{
|
public double x { get; set; }
|
public double y { get; set; }
|
}
|
}
|