2021-08-23 07:00:39 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ProxySuper.Core.Models.Projects
|
|
|
|
|
{
|
2021-08-24 05:36:41 +03:00
|
|
|
|
public class MTProtoGoSettings : IProjectSettings
|
2021-08-23 07:00:39 +03:00
|
|
|
|
{
|
2021-08-24 05:36:41 +03:00
|
|
|
|
public MTProtoGoSettings()
|
2021-08-23 07:00:39 +03:00
|
|
|
|
{
|
|
|
|
|
Port = 443;
|
|
|
|
|
|
|
|
|
|
Domain = string.Empty;
|
|
|
|
|
|
|
|
|
|
Cleartext = "bing.com";
|
|
|
|
|
|
|
|
|
|
SecretText = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Port { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Domain { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<int> FreePorts => new List<int> { Port };
|
|
|
|
|
|
|
|
|
|
public string Email => "";
|
|
|
|
|
|
|
|
|
|
public string Cleartext { get; set; }
|
|
|
|
|
|
|
|
|
|
public string SecretText { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|