1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 18:12:48 -05:00
Files
bitwarden/src/Api/Models/Response/PaymentResponseModel.cs
2022-08-29 16:06:55 -04:00

15 lines
344 B
C#

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; }
}