🐛 Trying to fix payment award event

This commit is contained in:
2025-09-08 13:42:15 +08:00
parent 6386ec8caa
commit abd346bb97
3 changed files with 30 additions and 46 deletions

View File

@@ -1,6 +1,11 @@
namespace DysonNetwork.Shared.Stream;
public class PaymentOrderEvent
public class PaymentOrderEvent : PaymentOrderEventBase
{
public Dictionary<string, object> Meta { get; set; } = null!;
}
public class PaymentOrderEventBase
{
public static string Type => "payments.orders";
@@ -9,6 +14,5 @@ public class PaymentOrderEvent
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; }
}