mirror of
https://github.com/bitwarden/server.git
synced 2025-04-27 07:42:15 -05:00
14 lines
350 B
C#
14 lines
350 B
C#
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; }
|
|
}
|
|
}
|