Files
Api/DouyinApi.Extensions/EventHandling/BlogQueryIntegrationEvent.cs

11 lines
264 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
namespace DouyinApi.EventBus.EventHandling
{
public class BlogQueryIntegrationEvent : IntegrationEvent
{
public string BlogId { get; private set; }
public BlogQueryIntegrationEvent(string blogid)
=> BlogId = blogid;
}
}