mirror of
https://github.com/bitwarden/server.git
synced 2025-07-14 06:07:36 -05:00
18 lines
437 B
C#
18 lines
437 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
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; }
|
|
}
|