24 lines
681 B
C#
24 lines
681 B
C#
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ordering.SignalrHub.IntegrationEvents.Events
|
|
{
|
|
public record OrderStatusChangedToPaidIntegrationEvent : IntegrationEvent
|
|
{
|
|
public int OrderId { get; }
|
|
public string OrderStatus { get; }
|
|
public string BuyerName { get; }
|
|
|
|
public OrderStatusChangedToPaidIntegrationEvent(int orderId,
|
|
string orderStatus, string buyerName)
|
|
{
|
|
OrderId = orderId;
|
|
OrderStatus = orderStatus;
|
|
BuyerName = buyerName;
|
|
}
|
|
}
|
|
}
|