FastTunnel/FastTunnel.Core.Client/DefaultClientConfig.cs

25 lines
725 B
C#
Raw Permalink Normal View History

2022-11-11 22:31:27 +08:00
// Licensed under the Apache License, Version 2.0 (the "License").
2022-01-02 00:23:39 +08:00
// You may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// https://github.com/FastTunnel/FastTunnel/edit/v2/LICENSE
// Copyright (c) 2019 Gui.H
2022-11-11 22:31:27 +08:00
using FastTunnel.Core.Client;
2021-06-13 00:18:34 +08:00
using FastTunnel.Core.Models;
using System.Collections.Generic;
namespace FastTunnel.Core.Config
{
public class DefaultClientConfig : IClientConfig
{
2024-01-16 13:57:10 +08:00
public DefaultClientConfig() { }
2021-06-13 00:18:34 +08:00
public SuiDaoServer Server { get; set; }
2021-08-08 22:27:36 +08:00
public string Token { get; set; }
2021-06-13 00:18:34 +08:00
public IEnumerable<WebConfig> Webs { get; set; }
2021-08-01 18:32:32 +08:00
public IEnumerable<ForwardConfig> Forwards { get; set; }
2021-06-13 00:18:34 +08:00
}
2022-11-11 22:31:27 +08:00
}