mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05: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