Files
Yi.Admin/Yi.Framework.Net5/Yi.Framework.Common/IOCOptions/ConsulClientOption.cs

17 lines
361 B
C#
Raw Normal View History

2021-10-10 17:30:31 +08:00
using System;
using System.Collections.Generic;
using System.Text;
2021-10-12 16:52:28 +08:00
namespace Yi.Framework.Common.IOCOptions
2021-10-10 17:30:31 +08:00
{
/// <summary>
/// 使用Consul时需要配置
/// </summary>
public class ConsulClientOption
{
public string IP { get; set; }
public int Port { get; set; }
public string Datacenter { get; set; }
}
}