using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TelpoPush.Models.Config
{
public class ServiceConfig
{
///
/// 数据服务Host Url
///
public string TelpoDataUrl { get; set; }
///
/// Kafka服务地址
///
public string KafkaBootstrapServers { get; set; }
public List KafkaTopics { get; set; }
public string KafkaGroupId { get; set; }
public string KafkaSaslUsername { get; set; }
public string KafkaSaslPassword { get; set; }
public string KafkaSslCaLocation { get; set; }
///
/// 默认缓存时间
///
public int CacheDurationSeconds { get; set; }
public int CacheDurationSeconds10 { get; set; }
}
}