mirror of
https://github.com/FastTunnel/FastTunnel.git
synced 2025-02-08 10:59:31 +08:00
15 lines
291 B
C#
15 lines
291 B
C#
using FastTunnel.Core.Client;
|
|
using FastTunnel.Core.Config;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FastTunnel.Client
|
|
{
|
|
public class Appsettings
|
|
{
|
|
public ClientConfig ClientSettings { get; set; }
|
|
}
|
|
}
|