You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// VPN信息类
|
|
/// </summary>
|
|
public class VpnInfo : BindableBase
|
|
{
|
|
private string vpnName;
|
|
private string vpnIP;
|
|
private string vpnUserName;
|
|
private string vpnPsw;
|
|
private string systemLogPath;
|
|
private string dataSavePath;
|
|
|
|
/// <summary>
|
|
/// VPN名称
|
|
/// </summary>
|
|
public string VpnName { get => vpnName;
|
|
set => SetProperty(ref vpnName, value);
|
|
}
|
|
/// <summary>
|
|
/// VPNIP
|
|
/// </summary>
|
|
public string VpnIP { get => vpnIP; set => SetProperty(ref vpnIP, value); }
|
|
/// <summary>
|
|
/// VPN用户名
|
|
/// </summary>
|
|
public string VpnUserName { get => vpnUserName; set => SetProperty(ref vpnUserName, value); }
|
|
/// <summary>
|
|
/// VPN密码
|
|
/// </summary>
|
|
public string VpnPsw { get => vpnPsw; set => SetProperty(ref vpnPsw, value); }
|
|
|
|
/// <summary>
|
|
/// 系统日志路径
|
|
/// </summary>
|
|
public string SystemLogPath { get => systemLogPath; set => SetProperty(ref systemLogPath, value); }
|
|
}
|
|
}
|