#27 added more info to transaction + callback from stripe
This commit is contained in:
@@ -8,5 +8,13 @@ public class UserTransaction : BaseAuditableEntity
|
||||
|
||||
// Foreign key to ApplicationUser
|
||||
public string ApplicationUserId { get; set; } = string.Empty;
|
||||
public bool IsConfirmed { get; set; } = false;
|
||||
public bool IsConfirmed { get; set; }
|
||||
public string StripeEventId { get; set; } = string.Empty;
|
||||
public string StripeChargeId { get; set; } = string.Empty;
|
||||
public string StripePaymentIntent { get; set; } = string.Empty;
|
||||
public string StripePaymentMethod { get; set; } = string.Empty;
|
||||
public string StripeReceiptUrl { get; set; } = string.Empty;
|
||||
public string StripeBillingDetailEmail { get; set; } = string.Empty;
|
||||
public string StripeBillingDetailName { get; set; } = string.Empty;
|
||||
public bool Paid { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user