1
0
mirror of https://github.com/bitwarden/server synced 2025-12-06 00:03:34 +00:00

refactor(billing): Remove unused request model (#6463)

This commit is contained in:
Stephon Brown
2025-10-20 10:17:38 -04:00
committed by GitHub
parent dbce45291c
commit 43779cf2e8

View File

@@ -1,13 +0,0 @@
using System.ComponentModel.DataAnnotations;
namespace Bit.Api.Models.Request.Organizations;
public class OrganizationVerifyBankRequestModel
{
[Required]
[Range(1, 99)]
public int? Amount1 { get; set; }
[Required]
[Range(1, 99)]
public int? Amount2 { get; set; }
}