服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-09-25 2420648a1522c2e1cd8138bb43dd7d46a6561a1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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; }
    }
}