mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 10:32:49 -05:00
Move request/response models (#1754)
This commit is contained in:
15
src/Api/Models/Response/PaymentResponseModel.cs
Normal file
15
src/Api/Models/Response/PaymentResponseModel.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using Bit.Core.Models.Api;
|
||||
|
||||
namespace Bit.Api.Models.Response
|
||||
{
|
||||
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