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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace TelpoPush.WanJiaAn.Worker.Models.Config
- {
- public class ServiceConfig
- {
- /// <summary>
- /// 数据服务Host Url
- /// </summary>
- public string TelpoDataUrl { get; set; }
-
- /// <summary>
- /// Kafka服务地址
- /// </summary>
- public string KafkaBootstrapServers { get; set; }
- public List<string> KafkaTopics { get; set; }
- public string KafkaGroupId { get; set; }
- public string KafkaUserName { get; set; }
- public string KafkaPassword { get; set; }
- //public string KafkaSslCaLocation { get; set; }
- /// <summary>
- /// 默认缓存时间
- /// </summary>
- public int CacheDurationSeconds { get; set; }
- public int CacheDurationSeconds10 { get; set; }
- }
- }
|