2025-04-21 09:54:34 +08:00

17 lines
301 B
C#

using JiShe.CollectBus.Common.Attributes;
using Volo.Abp.EventBus;
namespace JiShe.CollectBus.Samples;
[EventName("Sample.Kafka.Test")]
public class SampleDto
{
public int Value { get; set; }
}
[EventName("Sample.Kafka.Test2")]
public class SampleDto2
{
public int Value { get; set; }
}