♻️ Refactored order handling

This commit is contained in:
2025-09-05 00:13:58 +08:00
parent 3ee04d0b24
commit ddd109c77c
22 changed files with 2414 additions and 61 deletions

View File

@@ -0,0 +1,14 @@
namespace DysonNetwork.Shared.Stream;
public class PaymentOrderEvent
{
public static string Type => "payments.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 Dictionary<string, object> Meta { get; set; } = null!;
public int Status { get; set; }
}