1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-16 22:53:13 +03:00
ProxySU/ProxySuper.Core/ViewModels/HysteriaInstallViewModel.cs
2022-12-17 10:41:46 +08:00

26 lines
628 B
C#

using MvvmCross.ViewModels;
using ProxySuper.Core.Models;
using ProxySuper.Core.Models.Hosts;
using ProxySuper.Core.Models.Projects;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProxySuper.Core.ViewModels
{
public class HysteriaInstallViewModel : MvxViewModel<Record>
{
public Host Host { get; set; }
public HysteriaSettings Settings { get; set; }
public override void Prepare(Record parameter)
{
Host = parameter.Host;
Settings = parameter.HysteriaSettings;
}
}
}