using PBS;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IBox.WinFrmUI
{
public class ConnectionViewModel
{
///
/// 连接类型
///
public eConnectionType ConnectionType { get; set; }
///
/// 连接地址,IP地址 OR 蓝牙地址
///
public string ConnectionAddress { get; set; }
}
}