-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataStructure.cs
More file actions
44 lines (41 loc) · 1.02 KB
/
DataStructure.cs
File metadata and controls
44 lines (41 loc) · 1.02 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using Emgu.CV;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace myproject
{
internal class DataStructure
{
}
public class Province
{
public int Id { get; set; }
public string Name { get; set; }
public List<City> Cities { get; set; } = new List<City>();
}
public class City
{
public int Id { get; set; }
public string Name { get; set; }
public List<District> Districts { get; set; } = new List<District>();
}
public class District
{
public int Id { get; set; }
public string Name { get; set; }
}
public class PostInfo
{
public string Title { get; set; }
public string Author { get; set; }
public string ReplyCount { get; set; }
public string Url { get; set; }
}
public class LicensePlateResult
{
public string PlateNumber { get; set; }
public Mat ProcessedImage { get; set; }
}
}