26 lines
649 B
C#
26 lines
649 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using webapi.Domain.SeedWork;
|
|
|
|
namespace webapi.Domain.Events
|
|
{
|
|
public class UserMappingApproveDomainEvent : INotification
|
|
{
|
|
public Guid UserId { get; }
|
|
public Guid FlatId { get; }
|
|
public Guid PMCId { get; }
|
|
//public IEnumerable<string> Approvers { get; }
|
|
|
|
public UserMappingApproveDomainEvent(Guid pmcId, Guid flatId, Guid userId)
|
|
{
|
|
PMCId = pmcId;
|
|
UserId = userId;
|
|
FlatId = flatId;
|
|
//Approvers = approvers;
|
|
}
|
|
}
|
|
}
|