mirror of
https://github.com/FastTunnel/FastTunnel.git
synced 2025-02-08 02:39:29 +08:00
14 lines
261 B
C#
14 lines
261 B
C#
using FastTunnel.Core.Config;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FastTunnel.Server
|
|
{
|
|
public class Appsettings
|
|
{
|
|
public ServerConfig ServerSettings { get; set; }
|
|
}
|
|
}
|