mirror of
https://github.com/bitwarden/server
synced 2025-12-20 10:13:39 +00:00
add support for passing payment method type
This commit is contained in:
@@ -1,9 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Bit.Core.Enums;
|
||||
|
||||
namespace Bit.Core.Models.Api
|
||||
{
|
||||
public class PaymentRequestModel
|
||||
{
|
||||
// TODO: Required in future
|
||||
public PaymentMethodType? PaymentMethodType { get; set; }
|
||||
[Required]
|
||||
public string PaymentToken { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user