mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
21 lines
608 B
C#
21 lines
608 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request.Accounts
|
|
{
|
|
public class StorageRequestModel : IValidatableObject
|
|
{
|
|
[Required]
|
|
public short? StorageGbAdjustment { get; set; }
|
|
|
|
public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
|
|
{
|
|
if (StorageGbAdjustment == 0)
|
|
{
|
|
yield return new ValidationResult("Storage adjustment cannot be 0.",
|
|
new string[] { nameof(StorageGbAdjustment) });
|
|
}
|
|
}
|
|
}
|
|
}
|