mirror of
https://github.com/bitwarden/server.git
synced 2025-04-17 19:18:16 -05:00
15 lines
394 B
C#
15 lines
394 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Api.Models.Request.Organizations;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Api.Models.Request
|
|
{
|
|
public class PaymentRequestModel : OrganizationTaxInfoUpdateRequestModel
|
|
{
|
|
[Required]
|
|
public PaymentMethodType? PaymentMethodType { get; set; }
|
|
[Required]
|
|
public string PaymentToken { get; set; }
|
|
}
|
|
}
|