添加扩展中间件

This commit is contained in:
橙子
2021-10-12 16:52:28 +08:00
parent bba5a5039a
commit f204b211b9
34 changed files with 921 additions and 442 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Yi.Framework.Common.IOCOptions
{
/// <summary>
/// 使用Consul时需要配置
/// </summary>
public class ConsulClientOption
{
public string IP { get; set; }
public int Port { get; set; }
public string Datacenter { get; set; }
}
}