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 pointsList { get; set; } } public class point { public decimal x { get; set; } public decimal y { get; set; } } }