- using Confluent.Kafka;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Service.MqProducer.Model
- {
- public class TopicModel
- {
- public string Topic { get; set; } = default!;
- public Headers Headers { get; set; } = default!;
- }
- }
|