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

14 lines
347 B
C#
Raw Normal View History

2017-04-08 16:41:40 -04:00
using System.ComponentModel.DataAnnotations;
using Bit.Core.Enums;
2017-04-08 16:41:40 -04:00
namespace Bit.Core.Models.Api
{
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; }
}
}