Added profile ProfileColors and Profile images
This commit is contained in:
@@ -17,29 +17,29 @@ public class Data
|
||||
|
||||
public class Object
|
||||
{
|
||||
public string Id { get; set; } = String.Empty;
|
||||
public string Id { get; set; } = string.Empty;
|
||||
public int Amount { get; set; }
|
||||
public BillingDetails Billing_details { get; set; } = new();
|
||||
public string Calculated_statement_descriptor { get; set; } = String.Empty;
|
||||
public string Currency { get; set; } = String.Empty;
|
||||
public string Calculated_statement_descriptor { get; set; } = string.Empty;
|
||||
public string Currency { get; set; } = string.Empty;
|
||||
public bool Paid { get; set; }
|
||||
public string Payment_intent { get; set; } = String.Empty;
|
||||
public string Payment_method { get; set; } = String.Empty;
|
||||
public string Receipt_url { get; set; } = String.Empty;
|
||||
public string Status { get; set; } = String.Empty;
|
||||
public string Failure_message { get; set; } = String.Empty;
|
||||
public string Payment_intent { get; set; } = string.Empty;
|
||||
public string Payment_method { get; set; } = string.Empty;
|
||||
public string Receipt_url { get; set; } = string.Empty;
|
||||
public string Status { get; set; } = string.Empty;
|
||||
public string Failure_message { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class BillingDetails
|
||||
{
|
||||
public string Email { get; set; } = String.Empty;
|
||||
public string Name { get; set; } = String.Empty;
|
||||
public string Phone { get; set; } = String.Empty;
|
||||
public string Email { get; set; } = string.Empty;
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string Phone { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class Request
|
||||
{
|
||||
public string Id { get; set; } = String.Empty;
|
||||
public string Id { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class ConfirmStripeTransactionCommandHandler(
|
||||
|
||||
Reference in New Issue
Block a user