using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http.Headers; using System.Text; using System.Threading.Tasks; namespace StartServerWPF.Models { /// /// VPN信息类 /// public class VpnInfo : BindableBase { private string vpnName; private string vpnIP; private string vpnUserName; private string vpnPsw; private string systemLogPath; private string dataSavePath; /// /// VPN名称 /// public string VpnName { get => vpnName; set => SetProperty(ref vpnName, value); } /// /// VPNIP /// public string VpnIP { get => vpnIP; set => SetProperty(ref vpnIP, value); } /// /// VPN用户名 /// public string VpnUserName { get => vpnUserName; set => SetProperty(ref vpnUserName, value); } /// /// VPN密码 /// public string VpnPsw { get => vpnPsw; set => SetProperty(ref vpnPsw, value); } /// /// 系统日志路径 /// public string SystemLogPath { get => systemLogPath; set => SetProperty(ref systemLogPath, value); } } }