using System.Collections.Generic;
namespace Admin.Core.Serilog.Es
{
public class LogConfigRootDTO
{
///
/// tcp日志的host地址
///
public string tcpAddressHost { set; get; }
///
/// tcp日志的port地址
///
public int tcpAddressPort { set; get; }
public List ConfigsInfo { get; set; }
}
public class Configsinfo
{
public string FiedName { get; set; }
public string FiedValue { get; set; }
}
}