FastTunnel/FastTunnel.Server/Appsettings.cs

14 lines
261 B
C#
Raw Normal View History

2020-04-01 23:20:35 +08:00
using FastTunnel.Core.Config;
2019-12-16 10:29:06 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace FastTunnel.Server
{
public class Appsettings
{
public ServerConfig ServerSettings { get; set; }
}
}