Files
server/src/Api/Models/Request/PaymentRequestModel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
394 B
C#
Raw Normal View History

2017-04-08 16:41:40 -04:00
using System.ComponentModel.DataAnnotations;
2021-12-14 15:05:07 +00:00
using Bit.Api.Models.Request.Organizations;
using Bit.Core.Enums;
2017-04-08 16:41:40 -04:00
2021-12-14 15:05:07 +00:00
namespace Bit.Api.Models.Request
2017-04-08 16:41:40 -04:00
{
public class PaymentRequestModel : OrganizationTaxInfoUpdateRequestModel
2017-04-08 16:41:40 -04:00
{
2019-02-26 12:45:34 -05:00
[Required]
public PaymentMethodType? PaymentMethodType { get; set; }
2017-04-08 16:41:40 -04:00
[Required]
public string PaymentToken { get; set; }
}
}