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

35 lines
701 B
C#
Raw Normal View History

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
{
public class MTProtoGoSettings : IProjectSettings
2021-08-23 07:00:39 +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; }
}
}