mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 13:16:09 +03:00
48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using MvvmCross.ViewModels;
|
|
using ProxySuper.Core.Models;
|
|
using ProxySuper.Core.Models.Hosts;
|
|
using ProxySuper.Core.Models.Projects;
|
|
using ProxySuper.Core.Services;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Renci.SshNet;
|
|
using System.Windows.Threading;
|
|
|
|
namespace ProxySuper.Core.ViewModels
|
|
{
|
|
public class XrayInstallerViewModel : MvxViewModel<Record>
|
|
{
|
|
|
|
public Host Host { get; set; }
|
|
|
|
public XraySettings Settings { get; set; }
|
|
|
|
public override void Prepare(Record parameter)
|
|
{
|
|
var record = Utils.DeepClone(parameter);
|
|
Host = record.Host;
|
|
Settings = record.XraySettings;
|
|
}
|
|
|
|
|
|
private bool _connected;
|
|
public bool Connected
|
|
{
|
|
get
|
|
{
|
|
return _connected;
|
|
}
|
|
set
|
|
{
|
|
_connected = value;
|
|
RaisePropertyChanged("Connected");
|
|
}
|
|
}
|
|
|
|
public string CommandText { get; set; }
|
|
}
|
|
}
|