using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Kafka
{
public interface ISubscribeAck
{
///
/// 是否成功标记
///
bool Ack { get; set; }
///
/// 消息
///
string? Msg { get; set; }
}
}