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

11 lines
200 B
C#
Raw Normal View History

2017-04-08 16:41:40 -04:00
using System.ComponentModel.DataAnnotations;
namespace Bit.Core.Models.Api
{
2017-07-06 14:55:58 -04:00
public class PaymentRequestModel
2017-04-08 16:41:40 -04:00
{
[Required]
public string PaymentToken { get; set; }
}
}