1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-20 00:13:18 +03:00
ProxySU/ProxySuper.Core/Models/Projects/XraySettings_SS.cs

36 lines
790 B
C#
Raw Normal View History

2021-05-22 11:12:26 +08:00
using ProxySuper.Core.Services;
using System;
2021-05-13 09:58:45 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2021-05-14 19:07:19 +08:00
namespace ProxySuper.Core.Models.Projects
2021-05-13 09:58:45 +08:00
{
public partial class XraySettings
{
/// <summary>
/// ss password
/// </summary>
public string ShadowsocksPassword { get; set; }
/// <summary>
/// ss method
/// </summary>
public string ShadowsocksMethod { get; set; }
/// <summary>
/// ss port
/// </summary>
2021-05-15 16:45:36 +08:00
public int ShadowSocksPort { get; set; }
2021-05-22 11:12:26 +08:00
public string ShadowSocksShareLink
{
get
{
return ShareLink.Build(XrayType.ShadowsocksAEAD, this);
}
}
2021-05-13 09:58:45 +08:00
}
}