mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 18:12:48 -05:00
15 lines
344 B
C#
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; }
|
|
}
|