mirror of
https://github.com/snltty/linker.git
synced 2025-10-08 10:30:08 +08:00
11 lines
267 B
C#
11 lines
267 B
C#
namespace linker.messenger.sforward.server
|
|
{
|
|
public interface ISForwardServerStore
|
|
{
|
|
public string SecretKey { get; }
|
|
public byte BufferSize { get; }
|
|
public int WebPort { get; }
|
|
public int[] TunnelPortRange { get; }
|
|
}
|
|
}
|