FastTunnel/FastTunnel.Core.Client/IClientConfig.cs

28 lines
707 B
C#
Raw Normal View History

2022-01-02 00:23:39 +08:00
// Licensed under the Apache License, Version 2.0 (the "License").
// 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
2019-12-16 10:29:06 +08:00
using System;
using System.Collections.Generic;
2022-11-11 22:31:27 +08:00
using System.Linq;
2019-12-16 10:29:06 +08:00
using System.Text;
2022-11-11 22:31:27 +08:00
using System.Threading.Tasks;
using FastTunnel.Core.Config;
using FastTunnel.Core.Models;
2022-11-11 22:54:00 +08:00
namespace FastTunnel.Core.Client
2019-12-16 10:29:06 +08:00
{
2022-11-11 22:54:00 +08:00
public interface IClientConfig
{
public SuiDaoServer Server { get; set; }
public IEnumerable<WebConfig> Webs { get; set; }
2022-11-11 22:31:27 +08:00
2022-11-11 22:54:00 +08:00
public IEnumerable<ForwardConfig> Forwards { get; set; }
}
2022-11-11 22:31:27 +08:00
2019-12-16 10:29:06 +08:00
}
2022-11-11 22:54:00 +08:00