mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 21:26:09 +03:00
36 lines
790 B
C#
36 lines
790 B
C#
using ProxySuper.Core.Services;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProxySuper.Core.Models.Projects
|
|
{
|
|
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>
|
|
public int ShadowSocksPort { get; set; }
|
|
|
|
public string ShadowSocksShareLink
|
|
{
|
|
get
|
|
{
|
|
return ShareLink.Build(XrayType.ShadowsocksAEAD, this);
|
|
}
|
|
}
|
|
}
|
|
}
|