21 lines
389 B
C#
21 lines
389 B
C#
using CRM.Core.Common.EventBus;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
public class DeleteGiftEvent : IEvent
|
|
{
|
|
public DeleteGiftEvent()
|
|
{
|
|
}
|
|
|
|
public DeleteGiftEvent(int id, int channel)
|
|
{
|
|
Id = id;
|
|
Channel = channel;
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public int Channel { get; set; }
|
|
}
|
|
}
|