using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProxySuper.Core.Models.Projects { public class MTProxyGoSettings : IProjectSettings { public MTProxyGoSettings() { Port = 443; Domain = string.Empty; Cleartext = "bing.com"; SecretText = string.Empty; } public int Port { get; set; } public string Domain { get; set; } public List FreePorts => new List { Port }; public string Email => ""; public string Cleartext { get; set; } public string SecretText { get; set; } } }