using System.Collections.Generic;
namespace Blog.Core.Extensions.Apollo
{
///
/// Apollo配置项
///
public class ApolloOptions
{
public bool Enable { get; set; }
public List Namespaces { get; set; }
public class ChildNamespace
{
///
/// 命名空间名字
///
public string Name { get; set; }
///
/// 数据格式 Json/Yml/Yaml等
///
public string Format { get; set; }
}
}
}