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.
27 lines
626 B
27 lines
626 B
|
|
using System.Collections.Generic;
|
|
|
|
|
|
namespace Blog.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; }
|
|
}
|
|
}
|
|
}
|
|
|