28 lines
783 B
C#
28 lines
783 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using taloyhtio.idp.parser.common.domain;
|
|
using taloyhtio.idp.parser.common.model;
|
|
//using webapi.Domain.AggregatesModel.FlatAggregate;
|
|
//using webapi.Domain.SeedWork;
|
|
|
|
namespace taloyhtio.idp.parser.common.events
|
|
{
|
|
/// <summary>
|
|
/// Revoke user to flat mapping event
|
|
/// </summary>
|
|
public class RevokeUserAssignmentDomainEvent : INotification
|
|
{
|
|
public Flat Flat { get; }
|
|
public string UserName { get; }
|
|
public Guid CondoId { get; }
|
|
public IEnumerable<FlatUser> FlatUsers;
|
|
|
|
public RevokeUserAssignmentDomainEvent(string userName, Guid condoId, Flat flat)
|
|
{
|
|
Flat = flat;
|
|
UserName = userName;
|
|
CondoId = condoId;
|
|
}
|
|
}
|
|
}
|