Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Common/Options/ConsulClientOption.cs
2023-01-05 19:21:48 +08:00

17 lines
361 B
C#

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; }
}
}