|
1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace TelpoPush.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 KafkaSaslUsername { get; set; }
- public string KafkaSaslPassword { get; set; }
- public string KafkaSslCaLocation { get; set; }
-
-
-
-
- public int CacheDurationSeconds { get; set; }
- public int CacheDurationSeconds10 { get; set; }
- }
- }
|