1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-25 06:36:08 +03:00
ProxySU/ProxySuper.Core/Models/Projects/MTProtoGoSettings.cs

35 lines
701 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProxySuper.Core.Models.Projects
{
public class MTProtoGoSettings : IProjectSettings
{
public MTProtoGoSettings()
{
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; }
}
}