🐛 Trying to fix payment award event
This commit is contained in:
@@ -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; }
|
||||
}
|
Reference in New Issue
Block a user