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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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; }
}