Blog.Core/Blog.Core.Extensions/EventHandling/BlogQueryIntegrationEvent.cs
2022-01-30 13:35:46 +08:00

11 lines
264 B
C#

namespace Blog.Core.EventBus.EventHandling
{
public class BlogQueryIntegrationEvent : IntegrationEvent
{
public string BlogId { get; private set; }
public BlogQueryIntegrationEvent(string blogid)
=> BlogId = blogid;
}
}