Blog.Core/Blog.Core.Extensions/EventHandling/BlogQueryIntegrationEvent.cs

11 lines
264 B
C#
Raw Permalink Normal View History

namespace Blog.Core.EventBus.EventHandling
{
2022-01-30 13:35:46 +08:00
public class BlogQueryIntegrationEvent : IntegrationEvent
{
public string BlogId { get; private set; }
2022-01-30 13:35:46 +08:00
public BlogQueryIntegrationEvent(string blogid)
=> BlogId = blogid;
}
}