mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00:00
payment intent/method support for incomplete status
This commit is contained in:
13
src/Core/Models/Api/Response/PaymentResponseModel.cs
Normal file
13
src/Core/Models/Api/Response/PaymentResponseModel.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Bit.Core.Models.Api
|
||||
{
|
||||
public class PaymentResponseModel : ResponseModel
|
||||
{
|
||||
public PaymentResponseModel()
|
||||
: base("payment")
|
||||
{ }
|
||||
|
||||
public ProfileResponseModel UserProfile { get; set; }
|
||||
public string PaymentIntentClientSecret { get; set; }
|
||||
public bool Success { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user