Taylohtio/IDP/parsers/parser-flats-owners/common/events/UserMappingApproveDomainEve...

23 lines
605 B
C#

using System;
using taloyhtio.idp.parser.common.domain;
//using webapi.Domain.SeedWork;
namespace taloyhtio.idp.parser.common.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;
}
}
}