mirror of
https://github.com/bitwarden/server
synced 2025-12-22 03:03:33 +00:00
13 lines
294 B
C#
13 lines
294 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 VerifyBankAccountRequestBody
|
|
{
|
|
[Required]
|
|
public string DescriptorCode { get; set; }
|
|
}
|