femto-backend/Femto.Modules.Blog/Events/PostCreatedIntegrationEvent.cs

8 lines
252 B
C#

using Femto.Common.Attributes;
using Femto.Common.Integration;
namespace Femto.Modules.Blog.Events;
[EventType("post.created")]
public record PostCreatedIntegrationEvent(Guid EventId, Guid PostId, IEnumerable<Guid> MediaIds)
: IIntegrationEvent;