23 lines
586 B
C#
23 lines
586 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 AutoAddUserToFlatMappingDomainEvent : INotification
|
|
//{
|
|
// public Guid? UserId { get; }
|
|
// public Guid? FlatId { get; }
|
|
// public Guid PMCId { get; }
|
|
|
|
// public AutoAddUserToFlatMappingDomainEvent(Guid? userId, Guid? flatId, Guid pmcId) {
|
|
// UserId = userId;
|
|
// FlatId = flatId;
|
|
// PMCId = pmcId;
|
|
// }
|
|
//}
|
|
}
|