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