1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| using PBS;
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace IBox.WinFrmUI
| {
| public class ConnectionViewModel
| {
| /// <summary>
| /// 连接类型
| /// </summary>
| public eConnectionType ConnectionType { get; set; }
|
| /// <summary>
| /// 连接地址,IP地址 OR 蓝牙地址
| /// </summary>
| public string ConnectionAddress { get; set; }
| }
| }
|
|