using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using webapi.Domain.AggregatesModel.FlatAggregate; using webapi.Domain.SeedWork; namespace webapi.Domain.Events { public class DeleteUserToFlatMappingApprovalDomainEvent: INotification { public Guid UserId { get; } public Guid FlatId { get; } public DeleteUserToFlatMappingApprovalDomainEvent(Guid flatId, Guid userId) { FlatId = flatId; UserId = userId; } } }