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

31 lines
674 B
C#
Raw Normal View History

2021-05-22 06:12:26 +03:00
using ProxySuper.Core.Services;
2021-05-13 04:58:45 +03:00
2021-05-14 14:07:19 +03:00
namespace ProxySuper.Core.Models.Projects
2021-05-13 04:58:45 +03:00
{
public partial class XraySettings
{
/// <summary>
/// ss password
/// </summary>
2021-05-22 12:14:27 +03:00
public string ShadowSocksPassword { get; set; }
2021-05-13 04:58:45 +03:00
/// <summary>
/// ss method
/// </summary>
2021-05-22 12:14:27 +03:00
public string ShadowSocksMethod { get; set; }
2021-05-13 04:58:45 +03:00
/// <summary>
/// ss port
/// </summary>
2021-05-15 11:45:36 +03:00
public int ShadowSocksPort { get; set; }
2021-05-22 06:12:26 +03:00
public string ShadowSocksShareLink
{
get
{
return ShareLink.Build(XrayType.ShadowsocksAEAD, this);
}
}
2021-05-13 04:58:45 +03:00
}
}