14 lines
263 B
C#
Raw Normal View History

2025-04-21 10:17:40 +08:00
namespace JiShe.CollectBus.Kafka.Internal;
2025-04-15 16:45:10 +08:00
2025-04-21 10:17:40 +08:00
public interface ISubscribeAck
2025-04-15 16:45:10 +08:00
{
2025-04-21 10:17:40 +08:00
/// <summary>
/// 是否成功标记
/// </summary>
bool Ack { get; set; }
2025-04-15 16:45:10 +08:00
2025-04-21 10:17:40 +08:00
/// <summary>
/// 消息
/// </summary>
string? Msg { get; set; }
}