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