21 lines
409 B
C#
21 lines
409 B
C#
using CRM.Core.Common.EventBus;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
public class ReSetOrderEvent : IEvent
|
|
{
|
|
public ReSetOrderEvent()
|
|
{
|
|
}
|
|
|
|
public ReSetOrderEvent(int orderId, int channel)
|
|
{
|
|
OrderId = orderId;
|
|
Channel = channel;
|
|
}
|
|
|
|
public int OrderId { get; set; }
|
|
public int Channel { get; set; }
|
|
}
|
|
}
|