26 lines
413 B
C#
Raw Normal View History

2025-04-09 14:33:20 +08:00
using JiShe.CollectBus.Common.Attributes;
using Volo.Abp.EventBus;
2024-12-19 16:07:07 +08:00
2025-04-09 14:33:20 +08:00
namespace JiShe.CollectBus.Samples;
[EventName("Sample.Kafka.Test")]
2024-12-19 16:07:07 +08:00
public class SampleDto
{
public int Value { get; set; }
}
2025-04-09 14:33:20 +08:00
[EventName("Sample.Kafka.Test2")]
public class SampleDto2
{
public int Value { get; set; }
}
2025-05-08 11:25:08 +08:00
public class KafkaSendDto
{
public string Address { get; set; }
public string Frame { get; set; }
}