21 lines
397 B
C#
21 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TcpForwarder
|
|
{
|
|
// 添加配置管理类
|
|
public class AppConfig
|
|
{
|
|
public string RedisHost { get; set; }
|
|
public int RedisPort { get; set; }
|
|
public string RedisAuth { get; set; }
|
|
public int ServerPort { get; set; }
|
|
}
|
|
|
|
|
|
|
|
}
|