You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
513 B
22 lines
513 B
namespace Tiobon.Core.Extensions.Apollo;
|
|
|
|
/// <summary>
|
|
/// Apollo配置项
|
|
/// </summary>
|
|
public class ApolloOptions
|
|
{
|
|
public bool Enable { get; set; }
|
|
public List<ChildNamespace> Namespaces { get; set; }
|
|
|
|
public class ChildNamespace
|
|
{
|
|
/// <summary>
|
|
/// 命名空间名字
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// 数据格式 Json/Yml/Yaml等
|
|
/// </summary>
|
|
public string Format { get; set; }
|
|
}
|
|
}
|
|
|