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

36 lines
790 B
C#
Raw Normal View History

2021-05-22 06:12:26 +03:00
using ProxySuper.Core.Services;
using System;
2021-05-13 04:58:45 +03:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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>
public string ShadowsocksPassword { get; set; }
/// <summary>
/// ss method
/// </summary>
public string ShadowsocksMethod { get; set; }
/// <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
}
}