🚚 Rename the Stream to Queue in internal code
This commit is contained in:
18
DysonNetwork.Shared/Queue/PaymentEvent.cs
Normal file
18
DysonNetwork.Shared/Queue/PaymentEvent.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace DysonNetwork.Shared.Queue;
|
||||
|
||||
public class PaymentOrderEvent : PaymentOrderEventBase
|
||||
{
|
||||
public Dictionary<string, object> Meta { get; set; } = null!;
|
||||
}
|
||||
|
||||
public class PaymentOrderEventBase
|
||||
{
|
||||
public static string Type => "payment_orders";
|
||||
|
||||
public Guid OrderId { get; set; }
|
||||
public Guid WalletId { get; set; }
|
||||
public Guid AccountId { get; set; }
|
||||
public string? AppIdentifier { get; set; }
|
||||
public string? ProductIdentifier { get; set; }
|
||||
public int Status { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user