SOMS/test/TcpForwarder/AppConfig.cs
2025-07-08 14:01:10 +08:00

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; }
}
}