using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TelpoKafkaConsole.Model { public class ServiceConfig { /// /// Kafka服务地址 /// public string KafkaServerAddress { get; set; } = default!; public string KafkaServerPEMLocation { get; set;} = default!; //public int TopicPartitionsNum { get; set; } } }