22 lines
550 B
C#
22 lines
550 B
C#
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;
|
|
}
|
|
}
|
|
}
|