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

24 lines
504 B
C#
Raw Normal View History

2022-12-17 05:41:46 +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 HysteriaSettings
{
public string Domain { get; set; } = "";
public string Obfs { get; set; } = "";
public string Email { get; set; } = "";
public int Port { get; set; } = 36712;
public int UpMbps { get; set; } = 300;
public int DownMbps { get; set; } = 300;
}
}