|
12345678910111213141516171819202122232425262728293031 |
- 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
- {
-
-
-
- public string TelpoDataUrl { get; set; }
-
-
-
-
- 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 int CacheDurationSeconds { get; set; }
- public int CacheDurationSeconds10 { get; set; }
- }
- }
|