1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| using DataEntity.Sockets;
| using DataEntity.Sockets.Base;
|
| namespace DataEntity.Sockets.TakePhoto
| {
| /// <summary>
| /// Model
| /// </summary>
| public class Model
| {
| /// <summary>
| /// 使用模型类型
| /// </summary>
| public int model_type { get; set; }
| }
| }
|
|