mirror of
https://github.com/bitwarden/server
synced 2025-12-20 02:03:46 +00:00
11 lines
200 B
C#
11 lines
200 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Core.Models.Api
|
|
{
|
|
public class PaymentRequestModel
|
|
{
|
|
[Required]
|
|
public string PaymentToken { get; set; }
|
|
}
|
|
}
|