You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using Admin.Core.EventBus;
|
|
|
|
namespace Admin.Core.Extensions
|
|
{
|
|
public class AdminDeletedIntegrationEvent : IntegrationEvent
|
|
{
|
|
public string AdminId { get; private set; }
|
|
|
|
public AdminDeletedIntegrationEvent(string Adminid)
|
|
=> AdminId = Adminid;
|
|
}
|
|
}
|