2021-08-23 10:59:34 +03:00
|
|
|
|
using MvvmCross.ViewModels;
|
|
|
|
|
using ProxySuper.Core.Models;
|
|
|
|
|
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
|
|
|
|
|
{
|
2021-08-24 05:36:41 +03:00
|
|
|
|
public class MTProtoGoConfigViewModel : MvxViewModel<MTProtoGoSettings>
|
2021-08-23 10:59:34 +03:00
|
|
|
|
{
|
2021-08-24 05:36:41 +03:00
|
|
|
|
public MTProtoGoSettings Settings { get; set; }
|
2021-08-23 10:59:34 +03:00
|
|
|
|
|
2021-08-24 05:36:41 +03:00
|
|
|
|
public override void Prepare(MTProtoGoSettings parameter)
|
2021-08-23 10:59:34 +03:00
|
|
|
|
{
|
|
|
|
|
Settings = parameter;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|