1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-14 06:07:36 -05:00
Files
bitwarden/src/Api/Models/Response/PaymentResponseModel.cs
2025-07-08 10:25:59 -04:00

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