mirror of
https://github.com/bitwarden/server.git
synced 2025-12-11 23:31:02 -06:00
16 lines
404 B
C#
16 lines
404 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Billing.Models.Requests;
|
|
|
|
public class UpdatePaymentMethodRequestBody
|
|
{
|
|
[Required]
|
|
public TokenizedPaymentSourceRequestBody PaymentSource { get; set; }
|
|
|
|
[Required]
|
|
public TaxInformationRequestBody TaxInformation { get; set; }
|
|
}
|