qin
2025-03-20 7747fa47185ac45cf3030a2792a1ffc682afe333
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; }
    }
}