服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-02-27 9e4d2ea113f6d5631f78aa85bbe39481fd701b72
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; }
    }
}