11 lines
264 B
C#
11 lines
264 B
C#
namespace DouyinApi.EventBus.EventHandling
|
|
{
|
|
public class BlogQueryIntegrationEvent : IntegrationEvent
|
|
{
|
|
public string BlogId { get; private set; }
|
|
|
|
public BlogQueryIntegrationEvent(string blogid)
|
|
=> BlogId = blogid;
|
|
}
|
|
}
|